web/lib/Exceptions/InvalidMimeTypeException.php
2024-11-08 16:34:21 -06:00

7 lines
189 B
PHP

<?
namespace Exceptions;
class InvalidMimeTypeException extends AppException{
/** @var string $message */
protected $message = 'Uploaded image must be a JPG, BMP, PNG, or TIFF file.';
}