@Override
public Object visitPutKeyValueCommand(InvocationContext ctx, PutKeyValueCommand command) throws Throwable {
if (ctx.isOriginLocal()) {
suspectExceptionThrown = true;
throw throwJGroupsException ?
new SuspectedException("Simulated suspicion")
: new SuspectException("Simulated suspicion");
}
return super.visitPutKeyValueCommand(ctx, command);
}