scenario where the run() method needs to throw exception
How do we proceed if we want to throw userdefined exceptions from the run method.
if we write a method called
public void run() throws UserDefinedException{
}
will this get invoked when the thread.start(); method is called
If not how can we handle this
Regards,
ivin
please respond.