Browse
For agents
About
UpStream: a Project Management Plugin for WordPress
/
2.1.0
UpStream: a Project Management Plugin for WordPress
v2.1.0
Switch version
trunk
1.39.0
1.39.1
1.39.2
1.39.3
2.0.7
2.1.0
Overview
Code
upstream
/
includes
/
class-exception.php
class-exception.php
in UpStream: a Project Management Plugin for WordPress 2.1.0, at includes/class-exception.php
23 lines
266 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
* Upstream Exception.
4
*
5
*
@package
UpStream
6
*/
7
8
namespace
UpStream
;
9
10
//
Prevent direct access.
11
if
(
!
defined
(
'
ABSPATH
'
)
)
{
12
exit
;
13
}
14
15
/**
16
* Upstream Exception.
17
*
18
*
@since
1.24.0
19
*/
20
class
Exception
extends
\
Exception
{
21
22
}
23