blob: d7347d901004697bbcf0b3c3515881e8c8fc9a7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
namespace PHPImageWorkshop\Exception;
use PHPImageWorkshop\Exception\ImageWorkshopBaseException as ImageWorkshopBaseException;
// If no autoloader, uncomment these lines:
//require_once(__DIR__.'/ImageWorkshopBaseException.php');
/**
* ImageWorkshopException
*
* Manage ImageWorkshop exceptions
*
* @link http://phpimageworkshop.com
* @author Sybio (Clément Guillemain / @Sybio01)
* @license http://en.wikipedia.org/wiki/MIT_License
* @copyright Clément Guillemain
*/
class ImageWorkshopException extends ImageWorkshopBaseException
{
}
|