Package com.helger.web.multipart
Class MultipartMalformedStreamException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- com.helger.web.multipart.MultipartMalformedStreamException
-
- All Implemented Interfaces:
Serializable
public class MultipartMalformedStreamException extends IOException
Thrown to indicate that the input stream fails to follow the required syntax.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MultipartMalformedStreamException()Constructs aMalformedStreamExceptionwith no detail message.MultipartMalformedStreamException(String sMsg)Constructs anMalformedStreamExceptionwith the specified detail message.MultipartMalformedStreamException(String sMsg, Throwable aCause)Constructs anMalformedStreamExceptionwith 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 Detail
-
MultipartMalformedStreamException
public MultipartMalformedStreamException()
Constructs aMalformedStreamExceptionwith no detail message.
-
MultipartMalformedStreamException
public MultipartMalformedStreamException(String sMsg)
Constructs anMalformedStreamExceptionwith the specified detail message.- Parameters:
sMsg- The detail message.
-
-