Exceptions
3 years ago
CSS.php
2 years ago
Exception.php
3 years ago
JS.php
2 years ago
Minify.php
2 years ago
Exception.php
23 lines
| 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 |