mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 14:20:29 -04:00
11 lines
239 B
PHP
11 lines
239 B
PHP
<?
|
|
namespace Exceptions;
|
|
|
|
class StringTooLongException extends AppException{
|
|
public string $Source;
|
|
|
|
public function __construct(string $source = ''){
|
|
$this->Source = $source;
|
|
parent::__construct('String too long: ' . $source);
|
|
}
|
|
}
|