15 lines
322 B
PHP
15 lines
322 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Exceptions;
|
||
|
|
class InvalidRouteException extends \Exception {
|
||
|
|
|
||
|
|
private string $clientRoute;
|
||
|
|
|
||
|
|
public function __construct(string $clientRoute)
|
||
|
|
{
|
||
|
|
$this->clientRoute = $clientRoute;
|
||
|
|
$message = "{$clientRoute} doesn't exist";
|
||
|
|
parent::__construct($message, 404);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|