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

JavaSpring.apiException.mustache Maven / Gradle / Ivy

The newest version!
package {{apiPackage}};

{{>generatedAnnotation}}
public class ApiException extends Exception{
	private int code;
	public ApiException (int code, String msg) {
		super(msg);
		this.code = code;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy