Class UpdateException

  • All Implemented Interfaces:
    java.io.Serializable

    public class UpdateException
    extends RuntimeStreamException
    A runtime exception that may be thrown by an update operation on an UpdateOutputStream if the underlying stream throws an IOException.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      UpdateException​(java.lang.String msg)
      Base constructor.
      UpdateException​(java.lang.String msg, java.lang.Throwable cause)
      Constructor when this exception is due to another one.
    • 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

      • UpdateException

        public UpdateException​(java.lang.String msg)
        Base constructor.
        Parameters:
        msg - a message concerning the exception.
      • UpdateException

        public UpdateException​(java.lang.String msg,
                               java.lang.Throwable cause)
        Constructor when this exception is due to another one.
        Parameters:
        msg - a message concerning the exception.
        cause - the exception that caused this exception to be thrown.