Exemplo n.º 1
0
 /**
  * Returns the filename that triggered the error
  *
  * @return string
  */
 public function get_filename()
 {
     $parameters = parent::get_parameters();
     return $parameters['filename'];
 }
Exemplo n.º 2
0
 /**
  * Constructor
  *
  * @param integer		$status_code	The http status code.
  * @param string		$message		The Exception message to throw (must be a language variable).
  * @param array			$parameters		The parameters to use with the language var.
  * @param \Exception	$previous		The previous exception used for the exception chaining.
  * @param array			$headers		Additional headers to set in the response.
  * @param integer		$code			The Exception code.
  */
 public function __construct($status_code, $message = "", array $parameters = array(), \Exception $previous = null, array $headers = array(), $code = 0)
 {
     $this->status_code = $status_code;
     $this->headers = $headers;
     parent::__construct($message, $parameters, $previous, $code);
 }