* @throws Exception
*/
public void testHelloException()
throws Exception
{
HelloHome home = (HelloHome)getInitialContext().lookup(JNDI_NAME);
Hello hello = home.create();
try
{
getLog().debug("Invoking helloException");
hello.helloException("testHelloException");
fail("Was able to call helloException");