mirror of
https://github.com/standardebooks/web.git
synced 2025-07-06 06:40:33 -04:00
11 lines
233 B
PHP
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);
|
|
}
|
|
}
|