mirror of
https://github.com/corda/corda.git
synced 2025-06-19 07:38:22 +00:00
add Class.getExceptionTypes method
This commit is contained in:
@ -42,6 +42,10 @@ public class Constructor<T> extends AccessibleObject
|
|||||||
return method.getParameterTypes();
|
return method.getParameterTypes();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Class[] getExceptionTypes() {
|
||||||
|
return method.getExceptionTypes();
|
||||||
|
}
|
||||||
|
|
||||||
public int getModifiers() {
|
public int getModifiers() {
|
||||||
return method.getModifiers();
|
return method.getModifiers();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user