| 1 | <?php |
||
| 7 | class InvalidModificationArgument extends Exception |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Invalid target passed. |
||
| 11 | * |
||
| 12 | * @param string $target |
||
| 13 | * |
||
| 14 | * @return static |
||
| 15 | */ |
||
| 16 | public static function targetNotAllowed($target) |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Invalid classname passed. |
||
| 26 | * |
||
| 27 | * @param string $className |
||
| 28 | * |
||
| 29 | * @return static |
||
| 30 | */ |
||
| 31 | public static function modifcationClassNotFound($className) |
||
| 35 | } |
||
| 36 |