mirror of
https://github.com/Respect/Validation.git
synced 2026-03-17 23:59:51 +01:00
12 lines
No EOL
207 B
PHP
12 lines
No EOL
207 B
PHP
<?php
|
|
|
|
namespace Respect\Validation\Exceptions;
|
|
|
|
class ObjectException extends ValidationException
|
|
{
|
|
|
|
public static $defaultTemplates = array(
|
|
self::STANDARD => '"%s" is not an object',
|
|
);
|
|
|
|
} |