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