2013-05-11 13:19:18 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Database Exception Class
|
|
|
|
*/
|
|
|
|
class DatabaseException extends Exception {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Validation Exception Class
|
|
|
|
*/
|
|
|
|
class ValidationException extends Exception {}
|
|
|
|
|
2013-05-17 16:09:10 +03:00
|
|
|
/**
|
|
|
|
* Notification Exception Class
|
|
|
|
*/
|
|
|
|
class NotificationException extends Exception {}
|
|
|
|
|
2013-05-11 13:19:18 +03:00
|
|
|
/* End of file exception_types_helper.php */
|
|
|
|
/* Location: ./application/helpers/exception_types_helper.php */
|