2008-08-23 12:05:24 +00:00
|
|
|
<?php
|
2009-07-19 08:38:13 +01:00
|
|
|
/**
|
|
|
|
* A base exception to be caught by the upper levels
|
|
|
|
*/
|
2009-01-04 05:53:14 -08:00
|
|
|
class SCoreException extends Exception {}
|
|
|
|
|
2009-07-19 08:38:13 +01:00
|
|
|
/**
|
|
|
|
* A fairly common, generic exception
|
|
|
|
*/
|
2009-01-04 05:53:14 -08:00
|
|
|
class PermissionDeniedException extends SCoreException {}
|
2008-08-23 12:05:24 +00:00
|
|
|
?>
|