File "JsonException.php"

Full Path: /home/vantageo/public_html/cache/cache/cache/.wp-cli/wp-content/plugins/wp-phpmyadmin-extension/lib/phpMyAdmin/vendor/thecodingmachine/safe/lib/Exceptions/JsonException.php
File size: 248 bytes
MIME-type: text/x-php
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());
    }
}