use of com.moilioncircle.redis.replicator.ExceptionListener in project rocketmq-externals by apache.
the class ListenerTest method exceptionListenerTest.
@Test
public void exceptionListenerTest() {
ExceptionListener exceptionListener = new RedisExceptionListener(processor);
KeyValuePair pair = new KeyStringValueString();
exceptionListener.handle(null, new NullPointerException("adsf"), pair);
}
Aggregations