You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
493 B
22 lines
493 B
<?php namespace CodeIgniter\Format\Exceptions;
|
|
|
|
use CodeIgniter\Exceptions\ExceptionInterface;
|
|
|
|
class FormatException extends \RuntimeException implements ExceptionInterface
|
|
{
|
|
public static function forInvalidJSON(string $error = null)
|
|
{
|
|
return new static(lang('Format.invalidJSON', [$error]));
|
|
}
|
|
|
|
/**
|
|
* This will never be thrown in travis-ci
|
|
*
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public static function forMissingExtension()
|
|
{
|
|
return new static(lang('Format.missingExtension'));
|
|
}
|
|
|
|
}
|
|
|