Package com.jalios.io

Class 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 an SizeLimitExceededException with null as its error detail message.
      SizeLimitExceededException​(java.lang.String s)
      Constructs an SizeLimitExceededException 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
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • SizeLimitExceededException

        public SizeLimitExceededException()
        Constructs an SizeLimitExceededException with null as its error detail message.
      • SizeLimitExceededException

        public SizeLimitExceededException​(java.lang.String s)
        Constructs an SizeLimitExceededException with the specified detail message. The error message string s can later be retrieved by the Throwable.getMessage() method of class java.lang.Throwable.
        Parameters:
        s - the detail message.