22 lines
578 B
PHP
22 lines
578 B
PHP
<?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
|
|
{
|
|
} |