
de.codecentric.cxf.autodetection.diagnostics.WebServiceClientNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cxf-spring-boot-starter Show documentation
Show all versions of cxf-spring-boot-starter Show documentation
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 WebServiceClient class isn´t found.
*
* @author jonashackt
*/
public class WebServiceClientNotFoundException extends BootStarterCxfException {
protected static final String MESSAGE = "There was no class found, that´s annotated with javax.xml.ws.WebServiceClient and extends javax.xml.ws.Service";
public WebServiceClientNotFoundException() {
super(MESSAGE);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy