rollback java spring mvc template

This commit is contained in:
wing328
2015-06-09 13:15:03 +08:00
parent fc38b9bb79
commit d155ddd026
12 changed files with 415 additions and 418 deletions

View File

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