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

net.gdface.exception.BaseFaceException Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package net.gdface.exception;

/**
 * 项目中所有异常的基类
 * @author guyadong
 *
 */
public class BaseFaceException extends Exception {

	private static final long serialVersionUID = -745959836580373067L;

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

	public BaseFaceException() {
	}

	public BaseFaceException(String s) {
		super(s);
	}

	public BaseFaceException(String s, Throwable cause) {
		super(s, cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy