Posted: Fri Oct 14, 2005 4:27 pm Post subject: (No subject)
InterruptedException is just a subclass of Exception. You can catch exceptions specifically (like in your example) so that you can deal with different exceptions in different ways, or you can catch a generic "Exception" which handles any subclasses of Exception (most of them).