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
10 lines (9 loc) • 410 B
JavaScript
import { AgentOsError } from './agent-os-error';
export class AgentOsActionNotSupportedError extends 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';
}
}