FileDocCategorySizeDatePackage
MessageTraceException.javaAPI DocGlassfish v2 API3107Fri May 04 22:24:42 BST 2007com.sun.enterprise.admin.wsmgmt.msg

MessageTraceException

public class MessageTraceException extends com.sun.enterprise.admin.wsmgmt.WSMgmtException
An exception that provides information on web service management error.

Fields Summary
Constructors Summary
public MessageTraceException(String msg, Throwable cause)
Constructs a web service management exception with the specified message and cause.

param
msg the detail message for this exception
param
cause the cause of this error

        super(msg, cause);
    
public MessageTraceException(Throwable cause)
Constructs a web service management exception with the cause.

param
cause the cause of this error

        super(cause);
    
public MessageTraceException(String msg)
Constructs a web service management exception with the specified message.

param
msg the detail message for this exception

        super(msg);
    
public MessageTraceException()
Constructs a web service management exception.

        super();
    
Methods Summary