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

JaxRsInterfaces.ApiException.mustache Maven / Gradle / Ivy

There is a newer version: 0.5.0-beta-1
Show newest version
package {{apiPackage}};

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