Class ObserverException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ObserverException
    extends java.lang.RuntimeException
    Exception related with observers.
    Version:
    $Rev$ $Date$
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private static long serialVersionUID  
    • Constructor Summary

      Constructors 
      Constructor Description
      ObserverException()
      Creates new exception.
      ObserverException​(java.lang.String message)
      Creates new exception with message.
      ObserverException​(java.lang.String message, java.lang.Throwable cause)
      Creates new exception with given message and cause.
      ObserverException​(java.lang.Throwable cause)
      Creates new exception with cause.
    • 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

      • ObserverException

        public ObserverException()
        Creates new exception.
      • ObserverException

        public ObserverException​(java.lang.String message)
        Creates new exception with message.
        Parameters:
        message - exception message
      • ObserverException

        public ObserverException​(java.lang.Throwable cause)
        Creates new exception with cause.
        Parameters:
        cause - exception cause
      • ObserverException

        public ObserverException​(java.lang.String message,
                                 java.lang.Throwable cause)
        Creates new exception with given message and cause.
        Parameters:
        message - exception message
        cause - exception cause