respect-validation/library/Exceptions/AnyOfException.php
2017-02-05 12:28:08 +01:00

25 lines
661 B
PHP

<?php
/*
* This file is part of Respect/Validation.
*
* (c) Alexandre Gomes Gaigalas <alexandre@gaigalas.net>
*
* For the full copyright and license information, please view the "LICENSE.md"
* file that was distributed with this source code.
*/
namespace Respect\Validation\Exceptions;
class AnyOfException extends NestedValidationException
{
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => 'At least one of these rules must pass for {{name}}',
],
self::MODE_NEGATIVE => [
self::STANDARD => 'At least one of these rules must not pass for {{name}}',
],
];
}