mirror of
https://github.com/standardebooks/web.git
synced 2025-07-04 22:00:35 -04:00
7 lines
193 B
PHP
7 lines
193 B
PHP
<?
|
|
namespace Exceptions;
|
|
|
|
class EbookPlaceholderExistsException extends AppException{
|
|
/** @var string $message */
|
|
protected $message = 'An ebook placeholder for this book already exists.';
|
|
}
|