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.
32 lines
878 B
32 lines
878 B
<?php namespace CodeIgniter\Validation\Exceptions;
|
|
|
|
use CodeIgniter\Exceptions\ExceptionInterface;
|
|
use CodeIgniter\Exceptions\FrameworkException;
|
|
|
|
class ValidationException extends FrameworkException implements ExceptionInterface
|
|
{
|
|
public static function forRuleNotFound(string $rule = null)
|
|
{
|
|
return new static(lang('Validation.ruleNotFound', [$rule]));
|
|
}
|
|
|
|
public static function forGroupNotFound(string $group = null)
|
|
{
|
|
return new static(lang('Validation.groupNotFound', [$group]));
|
|
}
|
|
|
|
public static function forGroupNotArray(string $group = null)
|
|
{
|
|
return new static(lang('Validation.groupNotArray', [$group]));
|
|
}
|
|
|
|
public static function forInvalidTemplate(string $template = null)
|
|
{
|
|
return new static(lang('Validation.invalidTemplate', [$template]));
|
|
}
|
|
|
|
public static function forNoRuleSets()
|
|
{
|
|
return new static(lang('Validation.noRuleSets'));
|
|
}
|
|
}
|
|
|