Does throwing exceptions degrade the performance of an application? Is it possible to trace the performance [Resource utilization] to determine this?
At any case, does an exception terminate the execution of the following statements? I want to know all the technical aspects behind "throws" exception.
public someMethod() throws Exception {
// raises exception here
// safe code
}
Thanks in advance!