41 lines
776 B
PHP
41 lines
776 B
PHP
<?php
|
|
/* Icinga Web 2 | (c) 2015 Icinga Development Team | GPLv2+ */
|
|
|
|
namespace Icinga\Exception\Http;
|
|
|
|
/**
|
|
* Exception thrown if the HTTP method is not allowed
|
|
*/
|
|
class HttpMethodNotAllowedException extends HttpException
|
|
{
|
|
/**
|
|
* Allowed HTTP methods
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $allowedMethods;
|
|
|
|
/**
|
|
* Get the allowed HTTP methods
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getAllowedMethods()
|
|
{
|
|
return $this->allowedMethods;
|
|
}
|
|
|
|
/**
|
|
* Set the allowed HTTP methods
|
|
*
|
|
* @param string $allowedMethods
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setAllowedMethods($allowedMethods)
|
|
{
|
|
$this->allowedMethods = (string) $allowedMethods;
|
|
return $this;
|
|
}
|
|
}
|