@cognigy/rest-api-client
Version:
Cognigy REST-Client
11 lines • 424 B
JavaScript
/* Custom modules */
import { GatewayTimeoutError } from "./GatewayTimeoutError";
import { ErrorCode } from "./ErrorCode";
export class TimeoutError extends GatewayTimeoutError {
constructor(message, stack, meta, details, logLevel) {
super(message, stack, meta, details, logLevel);
this.name = "Timeout Error";
this.code = ErrorCode.TIMEOUT_ERROR;
}
}
//# sourceMappingURL=timeoutError.js.map