All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.carlosthe19916.webservices.exceptions.AbstractWebServiceException Maven / Gradle / Ivy

There is a newer version: 1.3.4.Final
Show newest version
package io.github.carlosthe19916.webservices.exceptions;

import javax.xml.ws.soap.SOAPFaultException;

public abstract class AbstractWebServiceException extends SOAPFaultException {

    protected final SOAPFaultException exception;

    public AbstractWebServiceException(SOAPFaultException exception) {
        super(exception.getFault());
        this.exception = exception;
    }

    public SOAPFaultException getException() {
        return exception;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy