mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 14:20:29 -04:00
Co-authored-by: Job Curtis <job.curtis@gmail.com> Co-authored-by: Alex Cabal <alex@standardebooks.org>
6 lines
188 B
PHP
6 lines
188 B
PHP
<?
|
||
namespace Exceptions;
|
||
|
||
class MissingEbookException extends AppException{
|
||
protected $message = 'Artwork marked as “in use”, but the ebook couldn’t be found in the filesystem.';
|
||
}
|