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

de.codecentric.cxf.common.BootStarterCxfException 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.common;

/**
 * Cxf Spring Boot Starter Basis Exception class.
 *
 * @author jonashackt
 */
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