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 ApiException extends Exception{
private int code;
public ApiException (int code, String msg) {
super(msg);
this.code = code;
}
private int code;
public ApiException (int code, String msg) {
super(msg);
this.code = code;
}
}