UNPKG

@ayanaware/bento

Version:

Modular runtime framework designed to solve complex tasks

14 lines 521 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.EntityLoadError = void 0; const EntityError_1 = require("./EntityError"); class EntityLoadError extends EntityError_1.EntityError { constructor(location, msg = 'Failed to load component') { if (location == null) location = 'Unknown component location'; super(msg); this.__define('location', location); } } exports.EntityLoadError = EntityLoadError; //# sourceMappingURL=EntityLoadError.js.map