mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 22:30:30 -04:00
7 lines
156 B
PHP
7 lines
156 B
PHP
<?
|
|
namespace Exceptions;
|
|
|
|
class EbookAuthorRequiredException extends AppException{
|
|
/** @var string $message */
|
|
protected $message = 'Author required.';
|
|
}
|