rename and remove dead code

This commit is contained in:
cbornet
2016-06-14 17:37:33 +02:00
parent 1062fa467e
commit 027ff93ae4
64 changed files with 87 additions and 1281 deletions

View File

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