java中如何再次抛出相同类型的异常?

发布于 2024-12-08 19:43:44 字数 57 浏览 1 评论 0原文

我需要在异常时和抛出相同类型的异常后恢复数据。 如果在编译时我不知道异常的类型,是否有可能? 谢谢。

I need to restore data on exception and after throw exception of the same type.
Is it possible if in compile time I don't know the type of exception?
Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

糖粟与秋泊 2024-12-15 19:43:44

你有没有尝试过这个:

try
{
  // your code here.
}
catch (Exception exception)
{
  // your code here.
  throw exception;
}

Have you tried this:

try
{
  // your code here.
}
catch (Exception exception)
{
  // your code here.
  throw exception;
}
孤寂小茶 2024-12-15 19:43:44

您需要提供更多详细信息;它是一个RuntimeException吗?如果没有,那么你已经抓住了它,只需重新抛出它即可。如果没有 try/catch,则需要将其包装在一个中,然后将其抛出。

如果您无权访问代码,可以使用 AspectJ 之类的东西。

You need to provide more details; is it a RuntimeException? If not, you're already catching it, just rethrow it. If there's no try/catch, you'd need to wrap it in one, and throw it.

If you don't have access to the code, you can use something like AspectJ.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文