FileDocCategorySizeDatePackage
ServiceChannelException.javaAPI DocExample4693Tue May 29 16:57:12 BST 2007com.sun.xml.ws.transport.tcp.servicechannel

ServiceChannelException

public class ServiceChannelException extends Exception
author
Alexey Stashok

Fields Summary
private ServiceChannelExceptionBean
faultInfo
Constructors Summary
public ServiceChannelException()

        faultInfo = new ServiceChannelExceptionBean();
    
public ServiceChannelException(ServiceChannelErrorCode errorCode, String message)

        super(message);
        faultInfo = new ServiceChannelExceptionBean(errorCode , message);
    
public ServiceChannelException(String message, ServiceChannelExceptionBean faultInfo)

        super(message);
        this.faultInfo = faultInfo;
    
public ServiceChannelException(String message, ServiceChannelExceptionBean faultInfo, Throwable cause)

        super(message, cause);
        this.faultInfo = faultInfo;
    
Methods Summary
public com.sun.xml.ws.transport.tcp.servicechannel.ServiceChannelException$ServiceChannelExceptionBeangetFaultInfo()

        return faultInfo;
    
public voidsetFaultInfo(com.sun.xml.ws.transport.tcp.servicechannel.ServiceChannelException$ServiceChannelExceptionBean faultInfo)

        this.faultInfo = faultInfo;