mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 14:20:29 -04:00
8 lines
169 B
PHP
8 lines
169 B
PHP
<?php
|
|
|
|
namespace Exceptions;
|
|
|
|
class InvalidImageUploadException extends AppException{
|
|
/** @var string $message */
|
|
protected $message = 'Uploaded image is invalid.';
|
|
}
|