NotFoundHttpException.
@author Fabien Potencier <fabien@symfony.com>
Expanded class hierarchy of NotFoundHttpException
class NotFoundHttpException extends HttpException {
/**
* Constructor.
*
* @param string $message The internal exception message
* @param Exception $previous The previous exception
* @param integer $code The internal exception code
*/
public function __construct($message = null, \Exception $previous = null, $code = 0) {
parent::__construct(404, $message, $previous, array(), $code);
}
}
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
HttpException:: |
private | property | ||
HttpException:: |
private | property | ||
HttpException:: |
public | function |
Returns response headers. Overrides HttpExceptionInterface:: |
|
HttpException:: |
public | function |
Returns the status code. Overrides HttpExceptionInterface:: |
|
NotFoundHttpException:: |
public | function |
Constructor. Overrides HttpException:: |