anonymous wrote : But it failed.
Failed = What exactly happened? Do you see any exception? Also, you would want to do a
better job with the exception handling:
anonymous wrote :
| try{
| com.zoo.TigerHome home = com.zoo.TigerUtil.getHome();
| tiger = home.create();
|
| }catch(Exception exception)
| {
|
| }
Atleast, print out the stacktrace
try{
| com.zoo.TigerHome home = com.zoo.TigerUtil.getHome();
| tiger = home.create();
|
| }catch(Exception exception)
| {
| exception.printStackTrace();
| }
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4153214#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...