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

NpsSDK.WsdlHandlerException Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package NpsSDK;

public class WsdlHandlerException extends Exception {
	
	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	public WsdlHandlerException(Exception exception) {
        super(exception);
    }
	
	public WsdlHandlerException(String message) {
        super(message);
    }
	
	public WsdlHandlerException(String message, Exception exception) {
        super(message,exception);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy