47 lines
1.3 KiB
PHP
47 lines
1.3 KiB
PHP
<?php declare(strict_types=1);
|
|
|
|
/*
|
|
* Copyleft (C) 2017 http://sikofitt.com sikofitt@gmail.com
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
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
|
|
);
|
|
}
|
|
}
|