web/lib/Exceptions/EbookExistsException.php
2025-01-09 14:08:54 -06:00

10 lines
245 B
PHP

<?
namespace Exceptions;
class EbookExistsException extends AppException{
public function __construct(string $identifier){
$this->message = 'Ebook already exists with identifier: ' . $identifier;
parent::__construct($this->message);
}
}