2013-05-18 16:09:27 -04: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;
}
}