EndpointNotExistFault.java

package org.apache.locator;

import jakarta.annotation.Generated;
import jakarta.xml.ws.WebFault;


/**
 * This class was generated by Apache CXF 4.2.1-SNAPSHOT-b3d0fedebc6936fad81baabf7e56ca36c7f2dd36
 * 2026-03-11T06:22:13.731Z
 * Generated source version: 4.2.1-SNAPSHOT
 */

@WebFault(name = "EndpointNotExistFault", targetNamespace = "http://apache.org/locator/types")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2026-03-11T06:22:13.731Z", comments = "Apache CXF 4.2.1-SNAPSHOT-b3d0fedebc6936fad81baabf7e56ca36c7f2dd36")
public class EndpointNotExistFault extends Exception {
    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2026-03-11T06:22:13.731Z")
    public static final long serialVersionUID = 1L;

    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2026-03-11T06:22:13.731Z")
    private org.apache.locator.types.EndpointNotExistFaultException faultInfo;

    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2026-03-11T06:22:13.731Z")
    public EndpointNotExistFault() {
        super();
    }

    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2026-03-11T06:22:13.731Z")
    public EndpointNotExistFault(String message) {
        super(message);
    }

    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2026-03-11T06:22:13.731Z")
    public EndpointNotExistFault(String message, java.lang.Throwable cause) {
        super(message, cause);
    }

    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2026-03-11T06:22:13.731Z")
    public EndpointNotExistFault(String message, org.apache.locator.types.EndpointNotExistFaultException endpointNotExistFault) {
        super(message);
        this.faultInfo = endpointNotExistFault;
    }

    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2026-03-11T06:22:13.731Z")
    public EndpointNotExistFault(String message, org.apache.locator.types.EndpointNotExistFaultException endpointNotExistFault, java.lang.Throwable cause) {
        super(message, cause);
        this.faultInfo = endpointNotExistFault;
    }

    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2026-03-11T06:22:13.731Z")
    public org.apache.locator.types.EndpointNotExistFaultException getFaultInfo() {
        return this.faultInfo;
    }
}