Validation Error for TransactionSearch class
Status: Beta
Brought to you by:
pete911
public void setInvoiceId(String id) throws IllegalArgumentException {
if (id != null && id.length() < 127) {
throw new IllegalArgumentException("Id can be max 127 characters "
+ "long");
}
nvpRequest.put("INVNUM", id);
}
this should be > 127 instead.