public class MBeanServerResponseActor extends Object
A class to act on the instances of {@link MBeanServerResponseMessage}.
Since the response may have both the exceptions and valid results, we have to
carefully handle them.
if (message.isException()) {
throw ((Exception)message.getWrappedResult());
}
/*ignore the return value, if there is no exception, as the message
implies a method invocation that returns void. */