@Test
public void testPumaSwiftException()
throws Exception
{
PumaReadServer puma = new PumaReadServer();
ReadSemanticException exception = new ReadSemanticException("my exception");
puma.setException(exception);
NiftyProcessor processor = new ThriftServiceProcessor(new ThriftCodecManager(), ImmutableList.<ThriftEventHandler>of(), puma);
try (
ThriftServer server = new ThriftServer(processor).start();