13 lines
236 B
PHP
13 lines
236 B
PHP
<?php
|
|
|
|
namespace App\Exceptions;
|
|
use Throwable;
|
|
|
|
class InvalidViewException extends \Exception {
|
|
|
|
public function __construct( string $viewName )
|
|
{
|
|
parent::__construct( "View {$viewName} does not exist.", 500 );
|
|
}
|
|
|
|
} |