compwright/ddb2es-serverless

View on GitHub
src/errors/FieldNotFoundError.js

Summary

Maintainability
A
0 mins
Test Coverage
export class FieldNotFoundError extends Error {
  constructor (parsedRecord, path) {
    super(`"${path}" field not found in record`)
    this.name = 'FieldNotFoundError'
    this.details = parsedRecord
  }
}