Class MultipartInput.MalformedStreamException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.apache.commons.fileupload2.core.FileUploadException
org.apache.commons.fileupload2.core.MultipartInput.MalformedStreamException
- All Implemented Interfaces:
Serializable
- Enclosing class:
MultipartInput
Signals that the input stream fails to follow the required syntax.
- See Also:
-
Constructor Summary
ConstructorDescriptionMalformedStreamException
(String message) Constructs anMalformedStreamException
with the specified detail message.MalformedStreamException
(String message, Throwable cause) Constructs anMalformedStreamException
with the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
MalformedStreamException
Constructs anMalformedStreamException
with the specified detail message.- Parameters:
message
- The detail message.
-
MalformedStreamException
Constructs anMalformedStreamException
with the specified detail message.- Parameters:
message
- The detail message.cause
- The cause (which is saved for later retrieval by theThrowable.getCause()
method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-