UNPKG

fhirbuilder

Version:
11 lines (10 loc) 377 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.InvalidFieldException = void 0; class InvalidFieldException extends Error { constructor(path, field) { const message = `InvalidFieldException. Field(s): '${field.join(', ')}'. Path: ${path}.`; super(message); } } exports.InvalidFieldException = InvalidFieldException;