Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
rawMessage = $message;
parent::__construct(\sprintf('Exit: %s', $message), $code, $previous);
}
/**
* Return a raw (unformatted) version of the error message.
*/
public function getRawMessage(): string
{
return $this->rawMessage;
}
/**
* Throws BreakException.
*
* Since `throw` can not be inserted into arbitrary expressions, it wraps with function call.
*
* @param int|string|null $status Exit status code or message
*
* @throws BreakException
*/
public static function exitShell($status = 0)
{
throw new self(\is_string($status) ? $status : 'Goodbye', \is_int($status) ? $status : 0);
}
}