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

de.codecentric.cxf.autodetection.diagnostics.SeiNotFoundException Maven / Gradle / Ivy

Go to download

Boot starter for SOAP-Webservices with Apache CXF using JAX-WS & JAXB with Annotations only

The newest version!
package de.codecentric.cxf.autodetection.diagnostics;

import de.codecentric.cxf.common.BootStarterCxfException;

/**
 * Thrown when the Service Endpoint Interface (SEI) itself isn´t found.
 *
 * @author jonashackt
 */
public class SeiNotFoundException extends BootStarterCxfException {

    protected static final String MESSAGE = "The Service Endpoint Interface (SEI) could´nt be found - an interface that´s annotated with javax.jws.WebService";

    public SeiNotFoundException() {
        super(MESSAGE);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy