> > > try {
> > >      ....
> > > } catch( (JMSException | RemoteException | SQLException) e) {
> > > }

> > try {
> >   ...
> > } catch (Exception e) {
> >   ...
> > }

> Usually you don't want to just catch all exceptions in a single block.
> Instead you want to have clusters of exceptions

And what is the common interface for those exceptions?  Exception?  ;-)  Are
you looking for catch (<TypeList> As <ParentType>), and just want the JVM to
exclude out other types derived from ParentType?

        --- Noel


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to