7.2.5 Rethrowing an exception


catch (Exception e) {
    throw e;
}
About fillInStackTrace(): Rethrowing.java.

It is possible to throw a different exception from the one you caught: RethrowNew.java


Next Page