UNPKG

@udraft/core

Version:

uDraft is a language and stack agnostic code-generation tool that simplifies full-stack development by converting a single YAML file into code for rapid development.

11 lines 467 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MissingAttributeError = void 0; const udraft_error_1 = require("./udraft-error"); class MissingAttributeError extends udraft_error_1.UDraftError { constructor(root, rootType, attribute) { super(`Attribute ${attribute} is missing on ${rootType} ${root}!`); } } exports.MissingAttributeError = MissingAttributeError; //# sourceMappingURL=missing-attribute-error.js.map