17 lines
390 B
Plaintext
17 lines
390 B
Plaintext
package com.securityControl.common.core.exception.file;
|
|
|
|
/**
|
|
* 文件名大小限制异常类
|
|
*
|
|
* @author czc
|
|
*/
|
|
public class FileSizeLimitExceededException extends FileException
|
|
{
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
public FileSizeLimitExceededException(long defaultMaxSize)
|
|
{
|
|
super("upload.exceed.maxSize", new Object[] { defaultMaxSize });
|
|
}
|
|
}
|