In C++, I can rethrow the exception I just caught
with the throw statement. Can I do something
similar in Java?
} catch (Exception ex) {
throw;
}
with the throw statement. Can I do something
similar in Java?
} catch (Exception ex) {
throw;
}
Comment