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

org.nico.aoc.throwable.DefinitionException Maven / Gradle / Ivy

There is a newer version: 1.1.3
Show newest version
package org.nico.aoc.throwable;

/** 
 * Definition Exception
 * 
 * @author nico
 * @version createTime:2018年3月7日 下午8:45:12
 */

public class DefinitionException extends Exception{

	private static final long serialVersionUID = 1L;

	public DefinitionException() {
		super();
		// TODO Auto-generated constructor stub
	}

	public DefinitionException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
		super(message, cause, enableSuppression, writableStackTrace);
		// TODO Auto-generated constructor stub
	}

	public DefinitionException(String message, Throwable cause) {
		super(message, cause);
		// TODO Auto-generated constructor stub
	}

	public DefinitionException(String message) {
		super(message);
		// TODO Auto-generated constructor stub
	}

	public DefinitionException(Throwable cause) {
		super(cause);
		// TODO Auto-generated constructor stub
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy