2013-07-02 20:18:19 +03:00
|
|
|
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
2013-05-11 13:19:18 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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-06-26 12:31:57 +03:00
|
|
|
/**
|
|
|
|
* Sync Exception Class
|
|
|
|
*/
|
|
|
|
class SyncException extends Exception {}
|
|
|
|
|
2013-07-02 20:18:19 +03:00
|
|
|
/**
|
|
|
|
* Print an exception to an HTML text.
|
|
|
|
*
|
|
|
|
* This method is used to display exceptions in a way that is userful and easy
|
|
|
|
* for the user to see. It uses the Bootstrap CSS accordion markup to display
|
|
|
|
* the message and when the user clicks on it the exception trace will be revealed.
|
|
|
|
*
|
|
|
|
* @param Exception $exception The exception to be displayed.
|
|
|
|
* @return string Returns the html markup of the exception.
|
|
|
|
*/
|
|
|
|
function exceptionToHtml($exception) {
|
|
|
|
return
|
|
|
|
'<div class="accordion" id="error-accordion">
|
|
|
|
<div class="accordion-group">
|
|
|
|
<div class="accordion-heading">
|
|
|
|
<a class="accordion-toggle" data-toggle="collapse"
|
|
|
|
data-parent="#error-accordion" href="#error-technical">' .
|
|
|
|
$exception->getMessage() . '
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div id="error-technical" class="accordion-body collapse">
|
|
|
|
<div class="accordion-inner">
|
|
|
|
<pre>' . $exception->getTraceAsString() . '</pre>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a javascript object of a given exception.
|
|
|
|
*
|
|
|
|
* This method is pretty useful whenever we need to pass an exception object
|
|
|
|
* to javascript during ajax calls.
|
|
|
|
*
|
|
|
|
* @param Exception $exception The given exception object.
|
|
|
|
* @return string Returns the json encoded object of the exception.
|
|
|
|
*/
|
|
|
|
function exceptionToJavascript($exception) {
|
|
|
|
return json_encode(array(
|
|
|
|
'code' => $exception->getCode(),
|
|
|
|
'file' => $exception->getFile(),
|
|
|
|
'line' => $exception->getLine(),
|
|
|
|
'message' => $exception->getMessage(),
|
|
|
|
'previous' => $exception->getPrevious(),
|
|
|
|
'trace' => $exception->getTraceAsString()
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2013-05-11 13:19:18 +03:00
|
|
|
/* End of file exception_types_helper.php */
|
|
|
|
/* Location: ./application/helpers/exception_types_helper.php */
|