How to catch all exceptions except a specific one?

exception, java

Solution

void myRoutine() throws SpecificException { 
    try {
        methodThrowingDifferentExceptions();
    } catch (SpecificException se) {
        throw se;
    } catch (Exception e) {
        //default routine for all other exceptions
    }
}

Problem

Is it possible to catch all exceptions of a method, except for a specific one, which should be thrown? ``` void myRoutine() throws SpecificException { try { methodThrowingDifferentExceptions(); } catch (SpecificException) { //can I throw this to the next level without eating it up in the last catch block? } catch (Exception e) { //default routine for all other exceptions } } ``` /Sidenote: the marked "duplicate" has nothing to do with my question!

Original source

Related problems