FileUploadException.java
上传用户:u_thks
上传日期:2022-07-31
资源大小:1910k
文件大小:0k
源码类别:
WEB源码(ASP,PHP,...)
开发平台:
Java
- package com.gamvan.fileUpload;
- public class FileUploadException
- extends Exception
- {
- /**
- * Constructs a new <code>FileUploadException</code> without message.
- */
- public FileUploadException()
- {
- }
- /**
- * Constructs a new <code>FileUploadException</code> with specified detail
- * message.
- *
- * @param msg the error message.
- */
- public FileUploadException(String msg)
- {
- super(msg);
- }
- }