/home/techb158/ileadtechnology.com/vendor/psy/psysh/src/Exception
NameSizeModeActions
BreakException.php10940644editdlrm
DeprecatedException.php3820644editdlrm
ErrorException.php30840644editdlrm
Exception.php4970644editdlrm
FatalErrorException.php14930644editdlrm
ParseErrorException.php9490644editdlrm
RuntimeException.php9680644editdlrm
ThrowUpException.php14270644editdlrm
TypeErrorException.php14310644editdlrm
UnexpectedTargetException.php8620644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/psy/psysh/src/Exception/TypeErrorException.php (1431B)
rawMessage = $message; $message = \preg_replace('/, called in .*?: eval\\(\\)\'d code/', '', $message); parent::__construct(\sprintf('TypeError: %s', $message), $code, $previous); } /** * Get the raw (unformatted) message for this error. */ public function getRawMessage(): string { return $this->rawMessage; } /** * Create a TypeErrorException from a TypeError. * * @deprecated PsySH no longer wraps TypeErrors * * @param \TypeError $e */ public static function fromTypeError(\TypeError $e): self { return new self($e->getMessage(), $e->getCode(), $e); } }