mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 22:30:30 -04:00
12 lines
189 B
PHP
12 lines
189 B
PHP
<?
|
|
namespace Exceptions;
|
|
|
|
class SeeOtherException extends AppException{
|
|
public string $Url;
|
|
|
|
public function __construct(string $url){
|
|
$this->Url = $url;
|
|
|
|
parent::__construct();
|
|
}
|
|
}
|