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 SummaryConstructorsConstructorDescriptionMalformedStreamException(String message) Constructs anMalformedStreamExceptionwith the specified detail message.MalformedStreamException(String message, Throwable cause) Constructs anMalformedStreamExceptionwith the specified detail message.
- 
Method SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
MalformedStreamExceptionConstructs anMalformedStreamExceptionwith the specified detail message.- Parameters:
- message- The detail message.
 
- 
MalformedStreamExceptionConstructs anMalformedStreamExceptionwith the specified detail message.- Parameters:
- message- The detail message.
- cause- The cause (which is saved for later retrieval by the- Throwable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
 
 
-