/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/TypeErrorException.php (1238B)
rawMessage = $message; $message = \preg_replace('/, called in .*?: eval\\(\\)\'d code/', '', $message); parent::__construct(\sprintf('TypeError: %s', $message), $code); } /** * Get the raw (unformatted) message for this error. * * @return string */ public function getRawMessage() { return $this->rawMessage; } /** * Create a TypeErrorException from a TypeError. * * @param \TypeError $e * * @return TypeErrorException */ public static function fromTypeError(\TypeError $e) { return new self($e->getMessage(), $e->getCode()); } }