mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-12-29 01:52:24 +03:00
24 lines
No EOL
471 B
PHP
24 lines
No EOL
471 B
PHP
<?php
|
|
|
|
/**
|
|
* Database Exception Class
|
|
*/
|
|
class DatabaseException extends Exception {}
|
|
|
|
/**
|
|
* Validation Exception Class
|
|
*/
|
|
class ValidationException extends Exception {}
|
|
|
|
/**
|
|
* Notification Exception Class
|
|
*/
|
|
class NotificationException extends Exception {}
|
|
|
|
/**
|
|
* Sync Exception Class
|
|
*/
|
|
class SyncException extends Exception {}
|
|
|
|
/* End of file exception_types_helper.php */
|
|
/* Location: ./application/helpers/exception_types_helper.php */ |