FileDocCategorySizeDatePackage
TransformException.javaAPI DocGlassfish v2 API3093Fri May 04 22:24:46 BST 2007com.sun.enterprise.admin.wsmgmt.transform

TransformException

public class TransformException extends com.sun.enterprise.admin.wsmgmt.WSMgmtException
An exception that provides information on transformation error(s).

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

param
cause the cause of this error

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

param
msg the detail message for this exception

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

        super();
    
Methods Summary