* An operation did not complete before its timeout expired.
| 280 | * An operation did not complete before its timeout expired. |
| 281 | */ |
| 282 | class TimeoutError extends WebDriverError { |
| 283 | /** @param {string=} opt_error the error message, if any. */ |
| 284 | constructor(opt_error) { |
| 285 | super(opt_error) |
| 286 | } |
| 287 | } |
| 288 | |
| 289 | /** |
| 290 | * A request to set a cookie’s value could not be satisfied. |