
de.codecentric.cxf.common.BootStarterCxfException 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
package de.codecentric.cxf.common;
public class BootStarterCxfException extends Exception {
private static final long serialVersionUID = 1L;
public BootStarterCxfException(Throwable cause) {
super(cause);
}
public BootStarterCxfException(String message, Throwable cause) {
super(message, cause);
}
public BootStarterCxfException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy