Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
LedgerAccountTypeNotFoundError,
MissingFulfilmentError,
ParticipantNotFoundError,
RecordExistsError,
TransferNotConditionalError,
TransferNotFoundError,
UnauthorizedError,
UnexecutedTransferError,
UnmetConditionError,
UnpreparedTransferError,
ValidationError,
EndpointReservedForHubAccountsError,
HubAccountTypeError,
ParticipantAccountCreateError,
HubAccountExistsError,
NotFoundError: SharedErrors.NotFoundError
}
'use strict'
const NotFoundError = require('@mojaloop/central-services-shared').NotFoundError
class MissingFulfilmentError extends NotFoundError {
constructor (message = 'This transfer has not yet been fulfilled') {
super(message)
}
}
module.exports = MissingFulfilmentError