Beispiel #1
0
 /**
  * Argument Exception handler
  * @param string $message   message to display
  * @param array  $variables variables to replace in message
  */
 public function __construct($string, $variables = array())
 {
     return parent::__construct($string, $variables, 500);
 }
Beispiel #2
0
 /**
  * Route Exception handler
  * @param string $message   message to display
  * @param array  $variables variables to replace in message
  */
 public function __construct($message, $variables = array())
 {
     return parent::__construct($message, $variables);
 }
Beispiel #3
0
 /**
  * Http Exception handler
  * @param integer $http_error HTTP error to set
  * @param string  $message    message to display
  * @param array   $variables  variables to replace in the message
  */
 public function __construct($http_error, $message, $variables = array())
 {
     return parent::__construct($message, $variables, $http_error);
 }