More PHP Doc comments.

This commit is contained in:
jgen
2014-04-29 01:33:03 -04:00
parent 3b1513f791
commit 317028a63b
22 changed files with 229 additions and 19 deletions

View File

@@ -1,11 +1,16 @@
<?php
/**
* A base exception to be caught by the upper levels
* Class SCoreException
*
* A base exception to be caught by the upper levels.
*/
class SCoreException extends Exception {}
/**
* A fairly common, generic exception
* Class PermissionDeniedException
*
* A fairly common, generic exception.
*/
class PermissionDeniedException extends SCoreException {}