(err)
| 79 | return HTTPStatusCodes.NOT_FOUND; |
| 80 | } |
| 81 | constructor (err) { |
| 82 | super(err || 'A request to switch to a frame could not be satisfied because ' + |
| 83 | 'the frame could not be found.', NoSuchFrameError.code(), |
| 84 | NoSuchFrameError.w3cStatus(), NoSuchFrameError.error()); |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | class UnknownCommandError extends ProtocolError { |