add Class.getExceptionTypes method

This commit is contained in:
Joel Dice 2009-12-15 10:04:51 -07:00
parent 7cf25a0fc3
commit 70da0df46b

View File

@ -42,6 +42,10 @@ public class Constructor<T> extends AccessibleObject
return method.getParameterTypes();
}
public Class[] getExceptionTypes() {
return method.getExceptionTypes();
}
public int getModifiers() {
return method.getModifiers();
}