@Test(expected = Exception.class)
public void testInvokeReferenceException20() throws Exception {
Echo echoComponent = node.getService(Echo.class, "EchoComponentWithReference20");
try {
echoComponent.echoBusinessException();
} catch (Exception e) {
System.err.println(e);
throw e;
}
}