Newer
Older
framework / system / Format / Exceptions / FormatException.php
@Jim Parry Jim Parry on 1 Dec 2018 412 bytes Release 4.0.0-alpha.3
<?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]));
	}

	public static function forMissingExtension()
	{
		return new static(lang('Format.missingExtension'));
	}

}