mirror of
https://github.com/standardebooks/web.git
synced 2025-07-06 06:40:33 -04:00
8 lines
167 B
PHP
8 lines
167 B
PHP
<?php
|
|
|
|
namespace Exceptions;
|
|
|
|
class InvalidFileUploadException extends AppException{
|
|
/** @var string $message */
|
|
protected $message = 'Uploaded file is invalid.';
|
|
}
|