Initial commit

This commit is contained in:
Alex Cabal 2018-12-29 15:21:19 -06:00
commit 28c8a3f0ba
136 changed files with 13350 additions and 0 deletions

View file

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