Package org.apache.commons.fileupload
Class FileUploadBase.FileUploadIOException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.apache.commons.fileupload.FileUploadBase.FileUploadIOException
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- FileUploadBase
public static class FileUploadBase.FileUploadIOException extends java.io.IOExceptionThis exception is thrown for hiding an innerFileUploadExceptionin anIOException.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private FileUploadExceptioncauseThe exceptions cause; we overwrite the parent classes field, which is available since Java 1.4 only.private static longserialVersionUIDThe exceptions UID, for serializing an instance.
-
Constructor Summary
Constructors Constructor Description FileUploadIOException(FileUploadException pCause)Creates aFileUploadIOExceptionwith the given cause.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ThrowablegetCause()Returns the exceptions cause.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
The exceptions UID, for serializing an instance.- See Also:
- Constant Field Values
-
cause
private final FileUploadException cause
The exceptions cause; we overwrite the parent classes field, which is available since Java 1.4 only.
-
-
Constructor Detail
-
FileUploadIOException
public FileUploadIOException(FileUploadException pCause)
Creates aFileUploadIOExceptionwith the given cause.- Parameters:
pCause- The exceptions cause, if any, or null.
-
-