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

8 lines
193 B
PHP

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