Class TruncatedDataException

  • All Implemented Interfaces:
    java.io.Serializable

    public class TruncatedDataException
    extends java.lang.RuntimeException
    TruncatedDataException is thrown if the data to be read next has been truncated away and can no longer be read.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      TruncatedDataException()
      Creates a new instance of TruncatedDataException class.
      TruncatedDataException​(java.lang.String msg)
      Creates a new instance of TruncatedDataException class.
      TruncatedDataException​(java.lang.String msg, java.lang.Throwable e)
      Creates a new instance of TruncatedDataException class.
      TruncatedDataException​(java.lang.Throwable e)
      Creates a new instance of TruncatedDataException class.
    • 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

      • TruncatedDataException

        public TruncatedDataException()
        Creates a new instance of TruncatedDataException class.
      • TruncatedDataException

        public TruncatedDataException​(java.lang.Throwable e)
        Creates a new instance of TruncatedDataException class.
        Parameters:
        e - The cause.
      • TruncatedDataException

        public TruncatedDataException​(java.lang.String msg,
                                      java.lang.Throwable e)
        Creates a new instance of TruncatedDataException class.
        Parameters:
        msg - Exception description.
        e - The cause.
      • TruncatedDataException

        public TruncatedDataException​(java.lang.String msg)
        Creates a new instance of TruncatedDataException class.
        Parameters:
        msg - Exception description.