You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
393 B
16 lines
393 B
package com.ruoyi.common.exception.file; |
|
|
|
/** |
|
* 文件名大小限制异常类 |
|
* |
|
* @author ruoyi |
|
*/ |
|
public class FileSizeLimitExceededException extends FileException |
|
{ |
|
private static final long serialVersionUID = 1L; |
|
|
|
public FileSizeLimitExceededException(long defaultMaxSize) |
|
{ |
|
super("upload.exceed.maxSize", new Object[] { defaultMaxSize }); |
|
} |
|
}
|
|
|