Class ObserverException

All Implemented Interfaces:
Serializable

public class ObserverException extends RuntimeException

Indicates that a checked exception was thrown by an observer method during event notification.

Author:
Pete Muir, Gavin King
See Also:
  • Constructor Details

    • ObserverException

      public ObserverException()
      Creates the exception with no detail message or cause.
    • ObserverException

      public ObserverException(String message)
      Creates the exception with given detail message.
      Parameters:
      message - the detail message
    • ObserverException

      public ObserverException(Throwable cause)
      Creates the exception with given cause.
      Parameters:
      cause - the cause
    • ObserverException

      public ObserverException(String message, Throwable cause)
      Creates the exception with given detail message and cause.
      Parameters:
      message - the detail message
      cause - the cause