/var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/Controller/Exception
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/Controller/Exception/SecurityException.php (1691B)
_type;
}
/**
* Set Message
*
* @param string $message Exception message
* @return void
*/
public function setMessage(string $message): void
{
$this->message = $message;
}
/**
* Set Reason
*
* @param string|null $reason Reason details
* @return $this
*/
public function setReason(?string $reason = null)
{
$this->_reason = $reason;
return $this;
}
/**
* Get Reason
*
* @return string|null
*/
public function getReason(): ?string
{
return $this->_reason;
}
}