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) • 609 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LegacyControllerNotConnectedError = void 0;
const legacy_controller_error_1 = require("./legacy-controller-error");
class LegacyControllerNotConnectedError extends legacy_controller_error_1.LegacyControllerError {
constructor() {
super('There is no connection to the AskUI legacy UI Controller. '
+ 'Make sure to call connect() before sending commands.');
this.name = 'LegacyControllerNotConnectedError';
}
}
exports.LegacyControllerNotConnectedError = LegacyControllerNotConnectedError;