2020-11-11 17:20:56 +01:00
|
|
|
<?PHP
|
|
|
|
declare(strict_types = 1);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Exception thrown by MDJail if a required security option has not been set.
|
|
|
|
*/
|
|
|
|
final class MDJailSecurityOptionNotSetException extends Exception {
|
|
|
|
/**
|
|
|
|
* Error message.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function errorMessage() {
|
|
|
|
//error message
|
2022-09-15 21:38:41 +02:00
|
|
|
return 'A security option of MD_JAIL has not been set: <b>' . $this->getMessage() . '</b>).';
|
2020-11-11 17:20:56 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|