(err)
| 96 | return 'unknown command'; |
| 97 | } |
| 98 | constructor (err) { |
| 99 | super(err || 'The requested resource could not be found, or a request was ' + |
| 100 | 'received using an HTTP method that is not supported by the mapped ' + |
| 101 | 'resource.', UnknownCommandError.code(), UnknownCommandError.w3cStatus(), UnknownCommandError.error()); |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | class StaleElementReferenceError extends ProtocolError { |