1 | <?php namespace BuildR\Utils\Enumeration\Exception; |
||
5 | class EnumerationException extends Exception { |
||
6 | |||
7 | const MESSAGE_INVALID_VALUE = 'This enumeration is not contains any constant like: %s'; |
||
8 | |||
9 | const MESSAGE_INVALID_KEY_TYPE = 'The key must be a string! %s given!'; |
||
10 | |||
11 | public static function invalidValue($value) { |
||
14 | |||
15 | public static function invalidKeyType($keyType) { |
||
18 | |||
19 | } |
||
20 |