UNPKG

@trust/model

Version:

A PouchDB adapter for the json-document modelling framework.

20 lines (16 loc) 273 B
'use strict' /** * ValidationError * @ignore */ class ValidationError extends Error { constructor (validation, message) { super(message || 'Invalid document') this.validation = validation } } /** * Exports * @ignore */ module.exports = ValidationError