FileDocCategorySizeDatePackage
WSMgmtException.javaAPI DocGlassfish v2 API3010Fri May 04 22:24:40 BST 2007com.sun.enterprise.admin.wsmgmt

WSMgmtException

public class WSMgmtException extends Exception
An exception that provides information on web service management error.

Fields Summary
Constructors Summary
public WSMgmtException(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 WSMgmtException(Throwable cause)
Constructs a web service management exception with the cause.

param
cause the cause of this error

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

param
msg the detail message for this exception

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

        super();
    
Methods Summary