testplane
Version:
Tests framework based on mocha and wdio
14 lines • 381 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ClientBridgeError = void 0;
/**
* @category Errors
*/
class ClientBridgeError extends Error {
constructor(message, options) {
super(message, options);
this.name = this.constructor.name;
}
}
exports.ClientBridgeError = ClientBridgeError;
//# sourceMappingURL=error.js.map