我有一个方法,我想通过反思来调用。 该方法对其参数进行了一些不同的检查,并且可以抛出NullPointer和IllegalArgument异常。
通过Reflection调用方法也会抛出需要捕获的IllegalArgument和NullPointer异常。有没有办法确定异常是由反射Invoke方法还是由方法本身引起的?
答案 0 :(得分:17)
如果方法本身引发了异常,那么它将被包装在InvocationTargetException。
中您的代码可能如下所示
try
{
method . invoke ( args ) ;
}
catch ( IllegalArgumentException cause )
{
// reflection exception
}
catch ( NullPointerException cause )
{
// reflection exception
}
catch ( InvocationTargetException cause )
{
try
{
throw cause . getCause ( ) ;
}
catch ( IllegalArgumentException c )
{
// method exception
}
catch ( NullPointerException c )
{
//method exception
}
}
答案 1 :(得分:0)
在回答原始问题时,异常中的堆栈跟踪会有所不同。
作为替代方法,您可以让函数捕获这些异常,并将它们重新抛出为方法(或类)特定异常。