View Javadoc
1   //
2   // $Id: JUploadExceptionUploadFailed.java 887 2009-11-06 21:07:21Z etienne_sf $
3   //
4   // jupload - A file upload applet.
5   // Copyright 2007 The JUpload Team
6   //
7   // Created: 2006-09-15
8   // Creator: etienne_sf
9   // Last modified: $Date: 2009-11-06 22:07:21 +0100 (ven., 06 nov. 2009) $
10  //
11  // This program is free software; you can redistribute it and/or modify it under
12  // the terms of the GNU General Public License as published by the Free Software
13  // Foundation; either version 2 of the License, or (at your option) any later
14  // version. This program is distributed in the hope that it will be useful, but
15  // WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16  // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
17  // details. You should have received a copy of the GNU General Public License
18  // along with this program; if not, write to the Free Software Foundation, Inc.,
19  // 675 Mass Ave, Cambridge, MA 02139, USA.
20  
21  package wjhk.jupload2.exception;
22  
23  /**
24   * @author etienne_sf
25   * 
26   */
27  public class JUploadExceptionUploadFailedSuccessNotFound extends
28  		JUploadExceptionUploadFailed {
29  
30  	/** */
31  	private static final long serialVersionUID = -5899077547982544361L;
32  
33  	/** @param msg */
34  	public JUploadExceptionUploadFailedSuccessNotFound(String msg) {
35  		super(msg);
36  	}
37  
38  	/** @param cause */
39  	public JUploadExceptionUploadFailedSuccessNotFound(Exception cause) {
40  		super(cause);
41  	}
42  
43  	/**
44  	 * @param msg
45  	 * @param cause
46  	 */
47  	public JUploadExceptionUploadFailedSuccessNotFound(String msg,
48  			Throwable cause) {
49  		super(msg, cause);
50  	}
51  
52  }