web/lib/Exceptions/SeeOtherException.php
2024-11-23 14:30:11 -06:00

12 lines
189 B
PHP

<?
namespace Exceptions;
class SeeOtherException extends AppException{
public string $Url;
public function __construct(string $url){
$this->Url = $url;
parent::__construct();
}
}