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

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

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

/**
 * 删除记录失败
 * 
 * @author guyadong
 *
 */
public class DeleteFailException extends BaseFaceException {

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

	private static final long serialVersionUID = -8262750359150416117L;

	public DeleteFailException() {
	}

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy