2013-04-03 00:19:21 -07:00

10 lines
194 B
Plaintext

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