View Single Post
  #3 (permalink)  
Old 04-07-2008, 07:11 AM
rjuyal's Avatar
rjuyal rjuyal is offline
Senior Member
 
Join Date: Mar 2008
Location: Delhi, India
Posts: 100
rjuyal is on a distinguished road
thanks
thanks for the reply.

I have already extended the Exception class, but still it is of no use.

it is like, i am using

try{
method.invoke ( ); // method points to my method which throws HMSException
}catch ( Exception e ) { } // works fine


try{
method.invoke ( ); // method points to my method which throws HMSException
}catch ( HMSException e ) { } // doesn' works


Thanks in advance
Reply With Quote