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:
java.io.Serializable
- Enclosing class:
- MultipartInput
public static class MultipartInput.MalformedStreamException extends FileUploadException
Signals that the input stream fails to follow the required syntax.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MalformedStreamException(java.lang.String message)Constructs anMalformedStreamExceptionwith the specified detail message.MalformedStreamException(java.lang.String message, java.lang.Throwable cause)Constructs anMalformedStreamExceptionwith the specified detail message.
-
-
-
Constructor Detail
-
MalformedStreamException
public MalformedStreamException(java.lang.String message)
Constructs anMalformedStreamExceptionwith the specified detail message.- Parameters:
message- The detail message.
-
MalformedStreamException
public MalformedStreamException(java.lang.String message, java.lang.Throwable cause)
Constructs anMalformedStreamExceptionwith 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.)
-
-