Package com.jalios.io
Class SizeLimitInputStream.SizeLimitExceededException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- com.jalios.io.SizeLimitInputStream.SizeLimitExceededException
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- SizeLimitInputStream
public class SizeLimitInputStream.SizeLimitExceededException extends java.io.IOException
Signals that a size limit has been reach during an I/O operation.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SizeLimitExceededException()
Constructs anSizeLimitExceededException
withnull
as its error detail message.SizeLimitExceededException(java.lang.String s)
Constructs anSizeLimitExceededException
with the specified detail message.
-
-
-
Constructor Detail
-
SizeLimitExceededException
public SizeLimitExceededException()
Constructs anSizeLimitExceededException
withnull
as its error detail message.
-
SizeLimitExceededException
public SizeLimitExceededException(java.lang.String s)
Constructs anSizeLimitExceededException
with the specified detail message. The error message strings
can later be retrieved by the
method of classThrowable.getMessage()
java.lang.Throwable
.- Parameters:
s
- the detail message.
-
-