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

com.alibaba.csb.ws.sdk.WSClientException Maven / Gradle / Ivy

There is a newer version: 1.1.5.11
Show newest version
package com.alibaba.csb.ws.sdk;

/**
 * Exception class when using the SDK.
 * @author liaotian.wq
 *
 */
public class WSClientException extends RuntimeException {
	private static final long serialVersionUID = 1L;

	public WSClientException(String errMsg) {
		super(errMsg);
	}
	
	public WSClientException(String errMsg, Throwable thr) {
		super(errMsg, thr);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy