mirror of
https://github.com/standardebooks/web.git
synced 2025-07-06 23:00:28 -04:00
Add cover art database
Co-authored-by: Job Curtis <job.curtis@gmail.com> Co-authored-by: Alex Cabal <alex@standardebooks.org>
This commit is contained in:
parent
74f747df76
commit
6a5c05511a
92 changed files with 3174 additions and 146 deletions
11
lib/Exceptions/StringTooLongException.php
Normal file
11
lib/Exceptions/StringTooLongException.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?
|
||||
namespace Exceptions;
|
||||
|
||||
class StringTooLongException extends AppException{
|
||||
public $Source;
|
||||
|
||||
public function __construct(string $source = ''){
|
||||
$this->Source = $source;
|
||||
parent::__construct('String too long: ' . $source);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue