Add SpringBoot server generator

This commit is contained in:
diyfr
2016-05-04 16:38:36 +02:00
parent 9604257649
commit 8209653fb0
45 changed files with 2215 additions and 0 deletions

View File

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