UNPKG

@ayanaware/bento

Version:

Modular runtime framework designed to solve complex tasks

12 lines 400 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ApiError = void 0; const BentoError_1 = require("./BentoError"); class ApiError extends BentoError_1.BentoError { constructor(entity, msg) { super(`${entity.name}(${entity.type}) ${msg}`); this.__define('entity', entity); } } exports.ApiError = ApiError; //# sourceMappingURL=ApiError.js.map