Class UpdateException

  • All Implemented Interfaces:
    java.io.Serializable

    @ThreadSafe
    public class UpdateException
    extends java.lang.Exception
    An exception used when an error occurs reading a setting.
    Author:
    Jeremy Long
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      UpdateException()
      Creates a new UpdateException.
      UpdateException​(java.lang.String msg)
      Creates a new UpdateException.
      UpdateException​(java.lang.String msg, java.lang.Throwable ex)
      Creates a new UpdateException.
      UpdateException​(java.lang.Throwable ex)
      Creates a new UpdateException.
    • 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()
        Creates a new UpdateException.
      • UpdateException

        public UpdateException​(java.lang.String msg)
        Creates a new UpdateException.
        Parameters:
        msg - a message for the exception.
      • UpdateException

        public UpdateException​(java.lang.Throwable ex)
        Creates a new UpdateException.
        Parameters:
        ex - the cause of the update exception.
      • UpdateException

        public UpdateException​(java.lang.String msg,
                               java.lang.Throwable ex)
        Creates a new UpdateException.
        Parameters:
        msg - a message for the exception.
        ex - the cause of the update exception.