Package de.uhilger.httpserver.up
Class FileUploadIOException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- de.uhilger.httpserver.up.FileUploadIOException
-
- All Implemented Interfaces:
Serializable
public class FileUploadIOException extends IOException
Der Lowlevel MultipartParser aus dem Projekt Apache Commons Fileupload ohne Abhaengigkeiten zum Rest von Commons Fileupload und Commons IO. This exception is thrown for hiding an inner FileUploadException in an IOException- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FileUploadIOException(Exception pCause)
Creates aFileUploadIOException
with the given cause.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Throwable
getCause()
Returns the exceptions cause.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
FileUploadIOException
public FileUploadIOException(Exception pCause)
Creates aFileUploadIOException
with the given cause.- Parameters:
pCause
- The exceptions cause, if any, or null.
-
-