Browse
For agents
About
Mail Queue
/
trunk
Mail Queue
vtrunk
Switch version
1.6.1
1.6.0
1.5.1
trunk
1.0
1.1
1.2
1.3
1.3.1
1.4
1.4.1
1.4.2
1.4.3
1.4.4
1.4.5
1.4.6
1.5.0
Overview
Code
mail-queue
/
lib
/
html2text
/
src
/
Html2TextException.php
Html2TextException.php
in Mail Queue trunk, at lib/html2text/src/Html2TextException.php
16 lines
279 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
3
namespace
Soundasleep
;
4
5
class
Html2TextException
extends
\
Exception
{
6
7
/**
@var
string
$more_info
*/
8
public
$
more_info
;
9
10
public
function
__construct
(
string
$
message
=
"
"
,
string
$
more_info
=
"
"
)
{
11
parent
::
__construct
(
$
message
)
;
12
$
this
->
more_info
=
$
more_info
;
13
}
14
15
}
16