. */ namespace Sikofitt\Config\Loader\Exception; use Throwable; /** * An Error Exception. * * @link http://php.net/manual/en/class.errorexception.php */ class JsonDecodingException extends \ErrorException { public function __construct( $severity = E_RECOVERABLE_ERROR, $fileName = __FILE__, $line = __LINE__, Throwable $previous ) { parent::__construct( json_last_error_msg(), json_last_error(), $severity, $fileName, $line, $previous ); } }