用新消息重新抛出Java异常,如果异常类型在方法声明列表中,则保留该异常类型

gsf*_*gsf 5 java exception rethrow

我正在尝试创建一个辅助方法,该方法将无需使用如下代码:

void foo() throws ExceptionA, ExceptionB, DefaultException {
  try {
     doSomething(); // that throws ExceptionA, ExceptionB or others
  } catch (Exception e) {
    if (e instanceof ExceptionA)
        throw new ExceptionA("extra message", e);
    if (e instanceof ExceptionB)
        throw new ExceptionB("extra message", e);

    throw new DefaultException("extra message", e);
  }
}
Run Code Online (Sandbox Code Playgroud)

问题是我需要同时在函数声明和函数主体中维护throws列表。我正在寻找如何避免这种情况并使更改抛出列表足够的方法,并且我的代码如下所示:

void foo() throws ExceptionA, ExceptionB, DefaultException {
  try {
     doSomething(); // that throws ExceptionA, ExceptionB or others
  } catch (Exception e) {
    rethrow(DefaultException.class, "extra message", e);
  }
}
Run Code Online (Sandbox Code Playgroud)

rethrow方法将足够聪明,可以从方法声明中识别出throws列表。

这样,当我更改方法在抛出列表中传播的类型的列表时,无需更改主体。

以下是可以解决问题的功能。问题是因为它不知道它将引发throws声明的异常类型必须说Exception,但是如果这样做,将要使用它的方法也需要指定它,并且整个思想使用抛出列表会变得地狱。

有什么建议可以解决吗?

@SuppressWarnings("unchecked")
public static void rethrow(Class<?> defaultException, String message, Exception e) throws Exception
{
  final StackTraceElement[] ste = Thread.currentThread().getStackTrace();

  final StackTraceElement element = ste[ste.length - 1 - 1];

  Method method = null;

  try {
     method = getMethod(element);
  } catch (ClassNotFoundException ignore) {
     // ignore the Class not found exception - just make sure the method is null
     method = null;
  }

  boolean preserveType = true;

  if (method != null) {

     // if we obtained the method successfully - preserve the type 
     // only if it is in the list of the thrown exceptions
     preserveType = false;

     final Class<?> exceptions[] = method.getExceptionTypes();

     for (Class<?> cls : exceptions) {
        if (cls.isInstance(e)) {
           preserveType = true;
           break;
        }
     }
  }

  if (preserveType)
  {
     // it is throws exception - preserve the type
     Constructor<Exception> constructor;
     Exception newEx = null;
     try {
        constructor = ((Constructor<Exception>) e.getClass().getConstructor());
        newEx = constructor.newInstance(message, e);
     } catch (Exception ignore) {
        // ignore this exception we prefer to throw the original
        newEx = null;
     }

     if (newEx != null)
        throw newEx;
  }

  // if we get here this means we do not want, or we cannot preserve the type
  // just rethrow it with the default type

  Constructor<Exception> constructor;
  Exception newEx = null;

  if (defaultException != null) {
     try {
        constructor = (Constructor<Exception>) defaultException.getConstructor();
        newEx = constructor.newInstance(message, e);
     } catch (Exception ignore) {
        // ignore this exception we prefer to throw the original
        newEx = null;
     }

     if (newEx != null)
        throw newEx;
  }

  // if we get here we were unable to construct the default exception
  // there lets log the message that we are going to lose and rethrow
  // the original exception

  log.warn("this message was not propagated as part of the exception: \"" + message + "\"");
  throw e;
}
Run Code Online (Sandbox Code Playgroud)

更新1:我RuntimeException可以避免使用throws声明,但是在这种情况下,我丢失了异常的类型,这是最重要的一点之一。

我如何解决这个想法?

Rei*_*977 6

我猜你正在做实际工作的代码(即你不修补异常的部分)看起来像这样。

public void doSomeWork( ... ) throws ExceptionA, ExceptionB, DefaultException
{
    try
    {
        // some code that could throw ExceptionA
        ...
        // some code that could throw OtherExceptionA
        ...
        // some code that could throw ExceptionB
        ...
        // some code that could throw OtherExceptionB
    }
    catch (Exception e) 
    {
        if( e instanceof ExceptionA )
        {
            throw new ExceptionA("extra message", e);
        }
        if( e instanceof ExceptionB )
        {
            throw new ExceptionB("extra message", e);
        }

        throw new DefaultException("extra message", e);
     }
}
Run Code Online (Sandbox Code Playgroud)

有两种更好的方法

第一种方法

public void doSomeWork( ... ) throws ExceptionA, ExceptionB, DefaultException
{
    // some code that could throw ExceptionA
    ...
    try
    {
        // some code that could throw OtherExceptionA
        ...
    }
    catch (Exception e) 
    {
        throw new DefaultException("extra message", e);
    }
    // some code that could throw ExceptionB
    ...
    try
    {
        // some code that could throw OtherExceptionB
    }
    catch (Exception e) 
    {
        throw new DefaultException("extra message", e);
    }
}
Run Code Online (Sandbox Code Playgroud)

第二种方法

public void doSomeWork( ... ) throws ExceptionA, ExceptionB, DefaultException
{
    try
    {
        // some code that could throw ExceptionA
        ...
        // some code that could throw OtherExceptionA
        ...
        // some code that could throw ExceptionB
        ...
        // some code that could throw OtherExceptionB
    }
    catch (OtherExceptionA | OtherExceptionB e) 
    {
        throw new DefaultException("extra message", e);
    }
}
Run Code Online (Sandbox Code Playgroud)

第一种方法是好,如果你想继续不惜一切代价和渔获物和包装执行RuntimeException,如果你碰上他们秒。通常你不想这样做,最好让它们传播,因为你可能无法处理它们。

第二种方法通常是最好的。在这里,您明确指出您可以处理哪些异常,并通过包装它们来处理它们。意外的RuntimeExceptions 会向上传播,除非您有办法处理它们,否则它们应该会传播。

只是一个一般性评论:玩StackTraceElements 被认为不是一个好主意。您最终Thread.currentThread().getStackTrace()可能会从中获得一个空数组(尽管如果使用现代 Oracle JVM,您很可能不会得到),并且调用方法的深度并不总是length-2,它可能length-1特别是在旧版本的 Oracle JVM 中。

你可以阅读更多关于这个问题这个问题