File "JsonException.php"
Full path: E:/sites/Single15/tinmung2007/webroot/XAMMP/phpMyAdmin/vendor/thecodingmachine/safe/lib/Exceptions/JsonException.php
File size: 248 B
MIME-type:
Charset: utf-8
<?php
namespace Safe\Exceptions;
class JsonException extends \Exception implements SafeExceptionInterface
{
public static function createFromPhpError(): self
{
return new self(\json_last_error_msg(), \json_last_error());
}
}