Package org.apache.commons.fileupload
Class FileUploadException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.commons.fileupload.FileUploadException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
FileUploadBase.FileSizeLimitExceededException,FileUploadBase.InvalidContentTypeException,FileUploadBase.IOFileUploadException,FileUploadBase.SizeLimitExceededException,FileUploadBase.UnknownSizeException
public class FileUploadException extends Exception
Exception for errors encountered while processing the request.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FileUploadException()Constructs a newFileUploadExceptionwithout message.FileUploadException(String msg)Constructs a newFileUploadExceptionwith specified detail message.FileUploadException(String msg, Throwable cause)Creates a newFileUploadExceptionwith the given detail message and cause.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ThrowablegetCause()voidprintStackTrace(PrintStream stream)Prints this throwable and its backtrace to the specified print stream.voidprintStackTrace(PrintWriter writer)Prints this throwable and its backtrace to the specified print writer.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
FileUploadException
public FileUploadException()
Constructs a newFileUploadExceptionwithout message.
-
FileUploadException
public FileUploadException(String msg)
Constructs a newFileUploadExceptionwith specified detail message.- Parameters:
msg- the error message.
-
-
Method Detail
-
printStackTrace
public void printStackTrace(PrintStream stream)
Prints this throwable and its backtrace to the specified print stream.- Overrides:
printStackTracein classThrowable- Parameters:
stream-PrintStreamto use for output
-
printStackTrace
public void printStackTrace(PrintWriter writer)
Prints this throwable and its backtrace to the specified print writer.- Overrides:
printStackTracein classThrowable- Parameters:
writer-PrintWriterto use for output
-
-