| 1 | <?php |
||
| 20 | class FailedToLoadView extends \RuntimeException implements Exception { |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Create a new instance of the exception if the view file itself created |
||
| 24 | * an exception. |
||
| 25 | * |
||
| 26 | * @since %VERSION% |
||
| 27 | * |
||
| 28 | * @param string $uri URI of the file that is not accessible or |
||
| 29 | * not readable. |
||
| 30 | * @param \Exception $exception Exception that was thrown by the view file. |
||
| 31 | * |
||
| 32 | * @return static |
||
| 33 | */ |
||
| 34 | public static function view_exception( $uri, $exception ) { |
||
| 43 | } |
||
| 44 |