mirror of
https://github.com/Respect/Validation.git
synced 2026-03-15 23:05:45 +01:00
16 lines
432 B
PHP
16 lines
432 B
PHP
<?php
|
|
namespace Respect\Validation\Exceptions\Locale;
|
|
|
|
use Respect\Validation\Exceptions\BicException;
|
|
|
|
class GermanBicException extends BicException
|
|
{
|
|
public static $defaultTemplates = array(
|
|
self::MODE_DEFAULT => array(
|
|
self::STANDARD => '{{name}} must be a german BIC',
|
|
),
|
|
self::MODE_NEGATIVE => array(
|
|
self::STANDARD => '{{name}} must not be a german BIC',
|
|
)
|
|
);
|
|
}
|