FileDocCategorySizeDatePackage
WSTCPException.javaAPI DocExample2540Tue May 29 16:57:14 BST 2007com.sun.xml.ws.transport.tcp.util

WSTCPException

public class WSTCPException extends Exception
author
Alexey Stashok

Fields Summary
private WSTCPError
error
Constructors Summary
public WSTCPException(WSTCPError error)

        this.error = error;
    
Methods Summary
public WSTCPErrorgetError()

        return error;
    
public java.lang.StringgetMessage()

        return toString();
    
public java.lang.StringtoString()

        if (error != null) {
            return error.toString();
        }
        
        return "";