vote up 2 vote down star

I was writing some code, and I notice a pattern in the exception handling that got me thinking:

try{

        // do stuff... throws JMS, Create and NamingException

} catch (NamingException e) {

        log1(e);
    rollback();
        doSomething(e)
} catch (CreateException e) {

        log1(e);
    rollback();
        doSomething(e)
}

Where JMSException would be handle some where up in the stack.

Would it be to just write:

try{

        // do stuff... throws JMS, Create and NamingException
} catch Exception[NamingException, CreateException] e) {

        log1(e);
    rollback();
        doSomething(e)
}

instead of putting it in tu a helper method:

try{

        // do stuff... throws JMS, Create and NamingException
} catch (NamingException e) {

        helper_handleError1(e)
} catch (CreateException e) {

        helper_handleError1(e)
}

Notice that I want to propagate stacktrace of the original JMSException, and I don't "feel like" creating an new JMSException with a third catch clause :)

Any toughs? Is this an extreme situation that would only pollute the syntax of Java, or just a cool thing to add?

flag

50% accept rate

8 Answers

vote up 4 vote down check

They are considering an extension of this type for Java 7.

See: http://tech.puredanger.com/java7#catch

link|flag
vote up 3 vote down

As long as we're making up syntaxes, here's how I'd like to see it:

try
{
   // do stuff ...
}
catch (NamingException e)
catch (CreateException e)
{
   log1(e);
   rollback();
   doSoemthing(e);
}

Similar to the the fallthrough of a switch statement or C# using block. Of course, there's a problem here with the variable e declared twice, but I think something could be worked out.

link|flag
vote up 0 vote down

Why not just

try
{
   // do stuff... throws JMS, Create and NamingException
}  catch (JMSException e) 
{   
   if (e instanceof CreateException || e instanceof NamingExcption)
   {    
     log1(e);
     rollback();
     doSomething(e);
   }
   else
     throw e;
}
link|flag
Sometime you may not want to do it for two reasons. 1. They may not have same common parent exception. 2. The re-throw class may not a checked exception declared on the interface. – Dennis Cheung Dec 4 '08 at 14:53
vote up 0 vote down

Another way to do.

Convert a low level exception to your own high level exception, and handle it.

try{
    try{
        // do stuff... throws JMS, Create and NamingException
    } catch (NamingException e) {
            throw new MyException(e);
    } catch (CreateException e) {
            throw new MyException(e);
    }
} catch (MyException e) {
    // something on e or e.getCause();
}
link|flag
vote up 1 vote down

In first place,

} catch Exception[NamingException, CreateException] e) {

lacks a '(' char.

In second place, why "Exception[NamingException, CreateException] e" and not just "[NamingException, CreateException] e"?

The idea may be nice, but it needs some polishing. For example, suppose I declare "MyException" class with a function "doYellow()" and a "OtherException" class with a function "doYellow()". Would such function be allowed(considering there is no "doYellow()" function in the superclass). If so, would it be allowed if "doYellow()" was declared on only one of them? Is that what the "Exception" before the [] chars is for? Also, suppose there is this declaration:

void doYellow(NamingException e);
void doYellow(CreateException e);

(note that they are different functions) would it be allowed to be called?

You really should provide further details. However, it can be useful in some cases(it's not rare)

link|flag
vote up 0 vote down

Try this:

try {
  ...
} catch ( Exception e) {
  if typeof(e) not in ('MyException', 'SpecialException') {
    throw e
  }
  doSomething()
}

(pseudo code)

link|flag
It looks good as pseudo code, but is not much practical when converted to real code ;( – Dev er dev Dec 4 '08 at 14:40
vote up 0 vote down

I suggest using the "Execute Around" idiom.

link|flag
What is the "Execute Around" idiom? – Avi Dec 4 '08 at 14:40
I don't think that really fits his case; he wants at least one Exception to escape and propagate up the chain. – Greg Case Dec 4 '08 at 14:52
Avi: Good question. stackoverflow.com/questions/341971/… – Tom Hawtin - tackline Dec 4 '08 at 20:39
Greg: I don't see that in the original question, and I don't see that as a problem anyway. – Tom Hawtin - tackline Dec 4 '08 at 20:39
vote up 0 vote down

I would like if it would be possible to do some pattern matching on exception type as a syntactic addiotion. Something like

try {
  ...
} catch ((IOException && !FileNotFoundException) || IllegalArgumentException ) {
  ... handle it
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.