UNPKG

@cognigy/rest-api-client

Version:

Cognigy REST-Client

11 lines 429 B
/* Custom modules */ import { InternalServerError } from "./internalServerError"; import { ErrorCode } from "./ErrorCode"; export class FileWriteError extends InternalServerError { constructor(message, stack, meta, details, logLevel) { super(message, stack, meta, details, logLevel); this.name = "File Write Error"; this.code = ErrorCode.FILE_WRITE_ERROR; } } //# sourceMappingURL=fileWrite.js.map