25 lines
		
	
	
		
			479 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			479 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
|  * Class SCoreException
 | |
|  *
 | |
|  * A base exception to be caught by the upper levels.
 | |
|  */
 | |
| class SCoreException extends Exception {}
 | |
| 
 | |
| /**
 | |
|  * Class PermissionDeniedException
 | |
|  *
 | |
|  * 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 {}
 |