UNPKG

askui

Version:

Reliable, automated end-to-end-testing that depends on what is shown on your screen instead of the technology you are running on

9 lines (8 loc) 319 B
import { AgentOsError } from './agent-os-error'; export class AgentOsNotConnectedError extends AgentOsError { constructor() { super('There is no connection to the AskUI AgentOS. ' + 'Make sure to call connect() before sending commands.'); this.name = 'AgentOsNotConnectedError'; } }