Tagged Questions
2
votes
6answers
2k views
Wrap exceptions by runtime exceptions with an annotation
Is there a way to annotate a method so all exceptions thrown are converted to runtime exception automagically?
@MagicAnnotation
// no throws clause!
void foo()
{
throw new Exception("bar")'
}