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

7 lines
159 B
PHP

<?
namespace Exceptions;
class InvalidDeathYearException extends AppException{
/** @var string $message */
protected $message = 'Invalid year of death.';
}