mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-25 23:04:51 +02:00
lib: Add MissingParameterException::getParameter and ::setParameter ...
... for getting/setting the name of the missing parameter which caused the exception. refs #8886
This commit is contained in:
parent
4d795494fc
commit
0fc5801e5e
@ -8,4 +8,33 @@ namespace Icinga\Exception;
|
|||||||
*/
|
*/
|
||||||
class MissingParameterException extends IcingaException
|
class MissingParameterException extends IcingaException
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* Name of the missing parameter
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $parameter;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the name of the missing parameter
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function getParameter()
|
||||||
|
{
|
||||||
|
return $this->parameter;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set the name of the missing parameter
|
||||||
|
*
|
||||||
|
* @param string $name
|
||||||
|
*
|
||||||
|
* @return $this
|
||||||
|
*/
|
||||||
|
public function setParameter($name)
|
||||||
|
{
|
||||||
|
$this->parameter = (string) $name;
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user