MethodNotAllowedHttpException.
@author Kris Wallsmith <kris@symfony.com>
Expanded class hierarchy of MethodNotAllowedHttpException
class MethodNotAllowedHttpException extends HttpException {
/**
* Constructor.
*
* @param array $allow An array of allowed methods
* @param string $message The internal exception message
* @param \Exception $previous The previous exception
* @param integer $code The internal exception code
*/
public function __construct(array $allow, $message = null, \Exception $previous = null, $code = 0) {
$headers = array(
'Allow' => strtoupper(implode(', ', $allow)),
);
parent::__construct(405, $message, $previous, $headers, $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:: |
|
MethodNotAllowedHttpException:: |
public | function |
Constructor. Overrides HttpException:: |