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

There is a newer version: 2.7.0
Show newest version
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