Files
openapi-generator/modules/swagger-codegen/src/main/resources/JavaJaxRS/jersey2/NotFoundException.mustache
2016-03-31 18:19:49 -06:00

11 lines
240 B
Plaintext

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