UNPKG

@cognigy/rest-api-client

Version:

Cognigy REST-Client

16 lines 608 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ImportError = void 0; /* Custom modules */ const internalServerError_1 = require("./internalServerError"); const ErrorCode_1 = require("./ErrorCode"); class ImportError extends internalServerError_1.InternalServerError { constructor(message, stack, meta, details, logLevel) { super(message, stack, meta); this.name = "Import Error"; this.code = ErrorCode_1.ErrorCode.IMPORT_ERROR; this.details = details; } } exports.ImportError = ImportError; //# sourceMappingURL=importError.js.map