2021-02-26 16:16:17 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
namespace Safe\Exceptions;
|
|
|
|
|
2022-07-12 19:26:21 +00:00
|
|
|
class JsonException extends \JsonException implements SafeExceptionInterface
|
2021-02-26 16:16:17 +00:00
|
|
|
{
|
|
|
|
public static function createFromPhpError(): self
|
|
|
|
{
|
|
|
|
return new self(\json_last_error_msg(), \json_last_error());
|
|
|
|
}
|
|
|
|
}
|