Rename exception for consistency

This commit is contained in:
Alex Cabal 2025-01-09 14:08:54 -06:00
parent 94d62fdcdf
commit c36d1ac3d3
4 changed files with 10 additions and 10 deletions

View file

@ -1,7 +1,7 @@
<?
namespace Exceptions;
class DuplicateEbookException extends AppException{
class EbookExistsException extends AppException{
public function __construct(string $identifier){
$this->message = 'Ebook already exists with identifier: ' . $identifier;