| 1 | <?php |
||
| 7 | class WriteError extends Exception |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Writing to the filesystem failed. |
||
| 11 | * |
||
| 12 | * @param string $path |
||
| 13 | * |
||
| 14 | * @return static |
||
| 15 | */ |
||
| 16 | public static function fileWriteFailed($e, $path = '') |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Writing to the filesystem failed because the given class exists. |
||
| 25 | * |
||
| 26 | * @param string $class |
||
| 27 | * |
||
| 28 | * @return static |
||
| 29 | */ |
||
| 30 | public static function classExists($class) |
||
| 34 | } |
||
| 35 |