web/lib/Exceptions/ArtworkAlreadyExistsException.php
2024-05-10 23:38:57 -05:00

7 lines
182 B
PHP

<?
namespace Exceptions;
class ArtworkAlreadyExistsException extends AppException{
/** @var string $message */
protected $message = 'An artwork with this name already exists.';
}