web/lib/SeeOtherEbookException.php
2019-04-03 16:25:00 -05:00

9 lines
202 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);
}
}