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
13 lines (12 loc) • 515 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AgentOsNotConnectedError = void 0;
const agent_os_error_1 = require("./agent-os-error");
class AgentOsNotConnectedError extends agent_os_error_1.AgentOsError {
constructor() {
super('There is no connection to the AskUI AgentOS. '
+ 'Make sure to call connect() before sending commands.');
this.name = 'AgentOsNotConnectedError';
}
}
exports.AgentOsNotConnectedError = AgentOsNotConnectedError;