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

gu.dtalk.TransformException Maven / Gradle / Ivy

There is a newer version: 0.8.2
Show newest version
package gu.dtalk;

/**
 * 数据转换异常
 * @author guyadong
 *
 */
public class TransformException extends Exception {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	public TransformException() {
	}

	public TransformException(String message) {
		super(message);
	}

	public TransformException(Throwable cause) {
		super(cause);
	}

	public TransformException(String message, Throwable cause) {
		super(message, cause);
	}


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy