renamed folder

This commit is contained in:
Tony Tam
2015-04-04 11:53:02 -07:00
parent 1e82fc5d24
commit 568ca26747
23 changed files with 20 additions and 17 deletions

View File

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