Browse
For agents
About
authLdap
/
3.1.2
authLdap
v3.1.2
Switch version
trunk
2.5.3
2.5.3-RC3
2.5.4
2.5.6
2.5.7
2.5.8
2.5.9
2.6.0
2.6.1
2.6.2
2.6.3
2.6.4
3.0.0
3.0.1
3.0.2
3.0.3
3.0.4
3.1.0
3.1.1
3.1.2
3.1.3
3.1.4
Overview
Code
authldap
/
src
/
Exception
/
Error.php
Error.php
in authLdap 3.1.2, at src/Exception/Error.php
25 lines
435 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
/**
4
* Copyright Andrea Heigl <andreas@heigl.org>
5
*
6
* Licenses under the MIT-license. For details see the included file LICENSE.md
7
*/
8
9
declare
(
strict_types
=
1
)
;
10
11
namespace
Org_Heigl
\
AuthLdap
\
Exception
;
12
13
use
Exception
;
14
15
class
Error
extends
Exception
16
{
17
public
function
__construct
(
$
message
,
$
line
=
null
)
18
{
19
parent
::
__construct
(
$
message
)
;
20
if
(
$
line
)
{
21
$
this
->
line
=
$
line
;
22
}
23
}
24
}
25