01: /*
02: * Copyright 2001-2004 The Apache Software Foundation
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16: package net.jforum.util.legacy.commons.fileupload;
17:
18: /**
19: * Exception for errors encountered while processing the request.
20: *
21: * @author <a href="mailto:jmcnally@collab.net">John McNally</a>
22: * @version $Id: FileUploadException.java,v 1.3 2005/07/26 03:05:01 rafaelsteil Exp $
23: */
24: public class FileUploadException extends Exception {
25:
26: /**
27: * Constructs a new <code>FileUploadException</code> without message.
28: */
29: public FileUploadException() {
30: }
31:
32: /**
33: * Constructs a new <code>FileUploadException</code> with specified detail
34: * message.
35: *
36: * @param msg the error message.
37: */
38: public FileUploadException(final String msg) {
39: super(msg);
40: }
41: }
|