Package de.uhilger.httpserver.up
Class MultipartStream.MalformedStreamException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- de.uhilger.httpserver.up.MultipartStream.MalformedStreamException
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- MultipartStream
public static class MultipartStream.MalformedStreamException extends IOException
Thrown to indicate that the input stream fails to follow the required syntax.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MalformedStreamException()
Constructs aMalformedStreamException
with no detail message.MalformedStreamException(String message)
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 Detail
-
MalformedStreamException
public MalformedStreamException()
Constructs aMalformedStreamException
with no detail message.
-
MalformedStreamException
public MalformedStreamException(String message)
Constructs anMalformedStreamException
with the specified detail message.- Parameters:
message
- The detail message.
-
-