web/lib/SeeOtherEbookException.php
2018-12-29 16:02:00 -06:00

10 lines
205 B
PHP

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