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
14 lines (13 loc) • 624 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AgentOsActionNotSupportedError = void 0;
const agent_os_error_1 = require("./agent-os-error");
class AgentOsActionNotSupportedError extends agent_os_error_1.AgentOsError {
constructor(action) {
super(`The action "${action}" is not supported by the AskUI AgentOS. `
+ 'Android automation is temporarily unavailable and will be reintroduced '
+ 'in a future release.');
this.name = 'AgentOsActionNotSupportedError';
}
}
exports.AgentOsActionNotSupportedError = AgentOsActionNotSupportedError;