Constructors Summary |
---|
public AdminEventListenerException()Creates a new instance of AdminEventListenerException
without detail message.
|
public AdminEventListenerException(String msg)Constructs an instance of AdminEventListenerException with
the specified detail message.
super(msg);
|
public AdminEventListenerException(String msg, Throwable cause)Constructs an instance of AdminEventListenerException with
the specified detail message and root cause.
super(msg, cause);
|
public AdminEventListenerException(Throwable cause)Constructs an instance of AdminEventListenerException with
the specified root cause. The message for the exception is derived from
cause.getMessage() if cause is not null, otherwise the message is null.
super(cause);
|