42 lines
896 B
Java
42 lines
896 B
Java
![]() |
package com.ruoyi.common.exception.file;
|
||
|
|
||
|
import org.apache.commons.fileupload.FileUploadException;
|
||
|
|
||
|
/**
|
||
|
* 文件名超长 误异常类
|
||
|
*
|
||
|
* @author ruoyi
|
||
|
*/
|
||
|
public class FileNameLengthLimitExceededException extends FileUploadException
|
||
|
{
|
||
|
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
private int length;
|
||
|
private int maxLength;
|
||
|
private String filename;
|
||
|
|
||
|
public FileNameLengthLimitExceededException(String filename, int length, int maxLength)
|
||
|
{
|
||
|
super("file name : [" + filename + "], length : [" + length + "], max length : [" + maxLength + "]");
|
||
|
this.length = length;
|
||
|
this.maxLength = maxLength;
|
||
|
this.filename = filename;
|
||
|
}
|
||
|
|
||
|
public String getFilename()
|
||
|
{
|
||
|
return filename;
|
||
|
}
|
||
|
|
||
|
public int getLength()
|
||
|
{
|
||
|
return length;
|
||
|
}
|
||
|
|
||
|
public int getMaxLength()
|
||
|
{
|
||
|
return maxLength;
|
||
|
}
|
||
|
|
||
|
}
|