Package org.codehaus.xfire.fault

Source Code of org.codehaus.xfire.fault.AuthenticationFault_Exception

package org.codehaus.xfire.fault;

import javax.xml.namespace.QName;

public class AuthenticationFault_Exception
    extends FaultInfoException
{
    private AuthenticationFault faultInfo;

    public AuthenticationFault_Exception(String message, AuthenticationFault faultInfo) {
        super(message);
        this.faultInfo = faultInfo;
    }

    public AuthenticationFault_Exception(String message, Throwable t, AuthenticationFault faultInfo) {
        super(message, t);
        this.faultInfo = faultInfo;
    }

    public AuthenticationFault getFaultInfo() {
        return faultInfo;
    }

    public static QName getFaultName() {
        return new QName("urn:xfire:authenticate:fault", "AuthenticationFault");
    }
}
TOP

Related Classes of org.codehaus.xfire.fault.AuthenticationFault_Exception

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.