mirror of
https://github.com/standardebooks/web.git
synced 2025-07-06 06:40:33 -04:00
Co-authored-by: Job Curtis <job.curtis@gmail.com> Co-authored-by: Alex Cabal <alex@standardebooks.org>
11 lines
232 B
PHP
11 lines
232 B
PHP
<?
|
|
namespace Exceptions;
|
|
|
|
class StringTooLongException extends AppException{
|
|
public $Source;
|
|
|
|
public function __construct(string $source = ''){
|
|
$this->Source = $source;
|
|
parent::__construct('String too long: ' . $source);
|
|
}
|
|
}
|