use of com.eightkdata.mongowp.exceptions.NoSuchKeyException in project torodb by torodb.
the class HandshakeReplSetUpdatePositionCommand method unmarshallArg.
@Override
public HandshakeArgument unmarshallArg(BsonDocument requestDoc) throws TypesMismatchException, NoSuchKeyException, BadValueException {
BsonDocument doc = BsonReaderTool.getDocument(requestDoc, "handshake");
HandshakeArgument result = super.unmarshallArg(doc);
if (result.getMemberId() == null) {
throw new NoSuchKeyException("replSetUpdatePosition handshake was missing 'member' field");
}
return result;
}
Aggregations