mirror of
https://github.com/corda/corda.git
synced 2025-06-06 01:11:45 +00:00
add Class.getExceptionTypes method
This commit is contained in:
parent
7cf25a0fc3
commit
70da0df46b
@ -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();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user