1 | <?php namespace BuildR\Utils\Enumeration\Exception; |
||
20 | class EnumerationException extends Exception { |
||
21 | |||
22 | const MESSAGE_INVALID_VALUE = 'This enumeration is not contains any constant like: %s'; |
||
23 | |||
24 | const MESSAGE_INVALID_KEY_TYPE = 'The key must be a string! %s given!'; |
||
25 | |||
26 | public static function invalidValue($value) { |
||
29 | |||
30 | public static function invalidKeyType($keyType) { |
||
33 | |||
34 | } |
||
35 |