FileDocCategorySizeDatePackage
AdminEventListenerException.javaAPI DocGlassfish v2 API3580Fri May 04 22:33:34 BST 2007com.sun.enterprise.admin.event

AdminEventListenerException

public class AdminEventListenerException extends Exception
Admin event listener exception. This exception can be thrown by event listeners to indicate failure while processing the event.

Fields Summary
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.

param
msg the detail message.

        super(msg);
    
public AdminEventListenerException(String msg, Throwable cause)
Constructs an instance of AdminEventListenerException with the specified detail message and root cause.

param
msg the detail message.
param
cause root cause of the exception

        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.

param
cause root cause of the exception

        super(cause);
    
Methods Summary