/home/techb158/ileadtechnology.com/SSM/vendor/psy/psysh/src/Exception
NameSizeModeActions
BreakException.php11150644editdlrm
DeprecatedException.php3820644editdlrm
ErrorException.php30660644editdlrm
Exception.php4970644editdlrm
FatalErrorException.php15030644editdlrm
ParseErrorException.php9740644editdlrm
RuntimeException.php9780644editdlrm
ThrowUpException.php14220644editdlrm
TypeErrorException.php12380644editdlrm
UnexpectedTargetException.php8510644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/psy/psysh/src/Exception/BreakException.php (1115B)
rawMessage = $message; parent::__construct(\sprintf('Exit: %s', $message), $code, $previous); } /** * Return a raw (unformatted) version of the error message. * * @return string */ public function getRawMessage() { return $this->rawMessage; } /** * Throws BreakException. * * Since `throw` can not be inserted into arbitrary expressions, it wraps with function call. * * @throws BreakException */ public static function exitShell() { throw new self('Goodbye'); } }