mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 14:20:29 -04:00
8 lines
193 B
PHP
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.';
|
|
}
|