mirror of
https://github.com/standardebooks/web.git
synced 2025-07-07 07:10:29 -04:00
9 lines
209 B
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);
|
|
}
|
|
}
|