|
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
|