Browse
For agents
About
WP Super Minify • Minify, Compress and Cache HTML, CSS & JavaScript
/
trunk
WP Super Minify • Minify, Compress and Cache HTML, CSS & JavaScript
vtrunk
Switch version
trunk
1.0
1.1
1.2
1.3
1.3.1
1.3.2
1.4
1.5
1.5.1
1.6
2.0
2.0.1
Overview
Code
wp-super-minify
/
includes
/
min
/
src
/
Exception.php
Exception.php
in WP Super Minify • Minify, Compress and Cache HTML, CSS & JavaScript trunk, at includes/min/src/Exception.php
23 lines
360 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
* Base Exception.
5
*
6
*
@deprecated
Use Exceptions\BasicException instead
7
*
8
*
@author
Matthias Mullie <minify@mullie.eu>
9
*/
10
11
namespace
MatthiasMullie
\
Minify
;
12
13
/**
14
* Base Exception Class.
15
*
16
*
@deprecated
Use Exceptions\BasicException instead
17
*
18
*
@author
Matthias Mullie <minify@mullie.eu>
19
*/
20
abstract
class
Exception
extends
\
Exception
21
{
22
}
23