org.apache.commons.fileupload
public class: FileUploadException [javadoc |
source]
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.commons.fileupload.FileUploadException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
SizeLimitExceededException, InvalidContentTypeException, UnknownSizeException, FileSizeLimitExceededException, IOFileUploadException, SizeException
Exception for errors encountered while processing the request.
- author:
< - a href="mailto:jmcnally@collab.net">John McNally
- version:
$ - Id: FileUploadException.java 479484 2006-11-27 01:06:53Z jochen $
| Methods from java.lang.Throwable: |
|---|
|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
| Method from org.apache.commons.fileupload.FileUploadException Detail: |
public void printStackTrace(PrintStream stream) {
super.printStackTrace(stream);
if (cause != null) {
stream.println("Caused by:");
cause.printStackTrace(stream);
}
}
Prints this throwable and its backtrace to the specified print stream. |
public void printStackTrace(PrintWriter writer) {
super.printStackTrace(writer);
if (cause != null) {
writer.println("Caused by:");
cause.printStackTrace(writer);
}
}
Prints this throwable and its backtrace to the specified
print writer. |