``` if (addPaymentRequest.additionalAmount <= 0...
# server
t
Copy code
if (addPaymentRequest.additionalAmount <= 0) {
            throw BorrowerServicingException("Loan amount must be greater than 0", EC_INVALID_LOAN_AMOUNT)
        }
i
400 you mean? How did you expect it to translate to that?
t
it actually should be a 422.
fixed it already. thanks for the response.