Fix error handling for duplicate ebook placeholders

This commit is contained in:
Alex Cabal 2025-01-09 14:00:50 -06:00
parent 047a76b788
commit d9fe3e9303
3 changed files with 17 additions and 15 deletions

View file

@ -0,0 +1,7 @@
<?
namespace Exceptions;
class EbookPlaceholderExistsException extends AppException{
/** @var string $message */
protected $message = 'An ebook placeholder for this book already exists.';
}