forked from mirrors/easyappointments
14 lines
297 B
PHP
14 lines
297 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Database Exception Class
|
||
|
*/
|
||
|
class DatabaseException extends Exception {}
|
||
|
|
||
|
/**
|
||
|
* Validation Exception Class
|
||
|
*/
|
||
|
class ValidationException extends Exception {}
|
||
|
|
||
|
/* End of file exception_types_helper.php */
|
||
|
/* Location: ./application/helpers/exception_types_helper.php */
|