webdriverio
Version:
Next-gen browser and mobile automation test framework for Node.js
16 lines (12 loc) • 311 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
class SevereServiceError extends Error {
constructor(message = 'Severe Service Error occurred.') {
super(message);
this.name = 'SevereServiceError';
}
}
exports.default = SevereServiceError;