X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fpsy%2Fpsysh%2Fsrc%2FException%2FRuntimeException.php;fp=vendor%2Fpsy%2Fpsysh%2Fsrc%2FException%2FRuntimeException.php;h=09e68483e5417b7242f0a4fe4e7eb54bd7e59388;hp=0000000000000000000000000000000000000000;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/vendor/psy/psysh/src/Exception/RuntimeException.php b/vendor/psy/psysh/src/Exception/RuntimeException.php new file mode 100644 index 000000000..09e68483e --- /dev/null +++ b/vendor/psy/psysh/src/Exception/RuntimeException.php @@ -0,0 +1,43 @@ +rawMessage = $message; + parent::__construct($message, $code, $previous); + } + + /** + * Return a raw (unformatted) version of the error message. + * + * @return string + */ + public function getRawMessage() + { + return $this->rawMessage; + } +}