UNPKG

fhirbuilder

Version:
11 lines (10 loc) 339 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ConstraintException = void 0; class ConstraintException extends Error { constructor(path, msg) { const message = `ConstraintException. ${msg}. Path: ${path}`; super(message); } } exports.ConstraintException = ConstraintException;