mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 14:20:29 -04:00
10 lines
248 B
PHP
10 lines
248 B
PHP
<?
|
|
namespace Exceptions;
|
|
|
|
class DuplicateEbookException extends AppException{
|
|
public function __construct(string $identifier){
|
|
$this->message = 'Ebook already exists with identifier: ' . $identifier;
|
|
|
|
parent::__construct($this->message);
|
|
}
|
|
}
|