UNPKG

@cognigy/rest-api-client

Version:

Cognigy REST-Client

12 lines 433 B
/* Custom modules */ import { InternalServerError } from "./internalServerError"; import { ErrorCode } from "./ErrorCode"; export class ImportError extends InternalServerError { constructor(message, stack, meta, details, logLevel) { super(message, stack, meta); this.name = "Import Error"; this.code = ErrorCode.IMPORT_ERROR; this.details = details; } } //# sourceMappingURL=importError.js.map