web/lib/SeeOtherEbookException.php

9 lines
209 B
PHP

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