makeomatic/ms-payments

View on GitHub
src/utils/paypal/agreements/error/billing-incomplete-error.js

Summary

Maintainability
A
0 mins
Test Coverage
class BillingIncompleteError extends Error {
  constructor() {
    super('Billing incomplete. Agreement state is active, but there is no outstanding transactions. Please retry later.');
  }
}

module.exports = BillingIncompleteError;