I am aware of the Checked and Unchecked Exception in Java.
In a multi-tiered environment, does unchecked Exception has a better performance over checked Exception?
There is absolutely zero performance difference. They're both just Exception
s.
Checked-/unchecked-ness is purely a compile-time concept.