FileUploadException.java
上传用户:u_thks
上传日期:2022-07-31
资源大小:1910k
文件大小:0k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

Java

  1. package com.gamvan.fileUpload;
  2. public class FileUploadException
  3.     extends Exception
  4. {
  5.     /**
  6.      * Constructs a new <code>FileUploadException</code> without message.
  7.      */
  8.     public FileUploadException()
  9.     {
  10.     }
  11.     /**
  12.      * Constructs a new <code>FileUploadException</code> with specified detail
  13.      * message.
  14.      *
  15.      * @param msg the error message.
  16.      */
  17.     public FileUploadException(String msg)
  18.     {
  19.         super(msg);
  20.     }
  21. }