Files
openapi-generator/modules/swagger-codegen/src/main/resources/JavaJaxRS/ApiException.mustache
2015-08-11 12:42:06 -07:00

11 lines
199 B
Plaintext

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