fembooru/core/exceptions.class.php
2014-04-25 16:07:30 -04:00

20 lines
411 B
PHP

<?php
/**
* A base exception to be caught by the upper levels
*/
class SCoreException extends Exception {}
/**
* A fairly common, generic exception
*/
class PermissionDeniedException extends SCoreException {}
/**
* Class ImageDoesNotExist
*
* This exception is used when an Image cannot be found by ID.
*
* Example: Image::by_id(-1) returns null
*/
class ImageDoesNotExist extends SCoreException {}