web/lib/Exceptions/SeeOtherEbookException.php
2022-03-20 17:46:47 -05:00

11 lines
233 B
PHP

<?
namespace Exceptions;
class SeeOtherEbookException extends SeException{
public $Url;
public function __construct(string $url = ''){
$this->Url = $url;
parent::__construct('This ebook is at a different URL: ' . $url);
}
}