Java 7 adds a new exception class called ReflectiveOperationException. The Javadoc documentation describes this class as a “Common superclass of exceptions thrown by reflective operations in core ...
I am writing a class library in .Net 2.0. In it, there is an try catch block as follows:<BR><BR>try<BR>{<BR> //Do some stuff<BR><BR>}<BR>catch(Exception ex)<BR>{<BR> //Clean up some stuff<BR> throw; ...