| 1 | <?php |
||
| 24 | class WriteException extends RuntimeException |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * Creates a new exception.. |
||
| 28 | * |
||
| 29 | * @param Exception $exception The exception that caused this exception. |
||
| 30 | * |
||
| 31 | * @return static The new exception. |
||
| 32 | */ |
||
| 33 | 31 | public static function forException(Exception $exception) |
|
| 40 | } |
||
| 41 |