
de.codecentric.cxf.autodetection.diagnostics.CxfSpringBootMavenPropertiesNotFoundException 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 a SEI implementing class isn´t found.
*
* @author jonashackt
*/
public class CxfSpringBootMavenPropertiesNotFoundException extends BootStarterCxfException {
protected static final String MESSAGE = "The cxf-spring-boot-maven.properties could´nt be found";
public CxfSpringBootMavenPropertiesNotFoundException(String message, Throwable cause) {
super(message + MESSAGE, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy