fhirbuilder
Version:
Another FHIR Tool to build FHIR Resources
11 lines (10 loc) • 377 B
JavaScript
;
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;