EndpointNotExistFault.java

package org.apache.locator;

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


/**
 * This class was generated by Apache CXF 4.1.3-SNAPSHOT-22c6265d4306187569b30c5b19682b37fe7d5c5c
 * 2025-07-04T06:50:40.083Z
 * Generated source version: 4.1.3-SNAPSHOT
 */

@WebFault(name = "EndpointNotExistFault", targetNamespace = "http://apache.org/locator/types")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-07-04T06:50:40.083Z", comments = "Apache CXF 4.1.3-SNAPSHOT-22c6265d4306187569b30c5b19682b37fe7d5c5c")
public class EndpointNotExistFault extends Exception {
    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-07-04T06:50:40.083Z")
    public static final long serialVersionUID = 1L;

    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-07-04T06:50:40.083Z")
    private org.apache.locator.types.EndpointNotExistFaultException faultInfo;

    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-07-04T06:50:40.083Z")
    public EndpointNotExistFault() {
        super();
    }

    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-07-04T06:50:40.083Z")
    public EndpointNotExistFault(String message) {
        super(message);
    }

    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-07-04T06:50:40.083Z")
    public EndpointNotExistFault(String message, java.lang.Throwable cause) {
        super(message, cause);
    }

    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-07-04T06:50:40.083Z")
    public EndpointNotExistFault(String message, org.apache.locator.types.EndpointNotExistFaultException endpointNotExistFault) {
        super(message);
        this.faultInfo = endpointNotExistFault;
    }

    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2025-07-04T06:50:40.083Z")
    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 = "2025-07-04T06:50:40.083Z")
    public org.apache.locator.types.EndpointNotExistFaultException getFaultInfo() {
        return this.faultInfo;
    }
}