抛出 ExecutionException 但没有原因
我有一个 future 任务,它通过套接字对服务器执行一些 I/O 操作。当我使用任务的 get()
方法检索结果时,我收到 ExecutionException
,但没有任何原因,即 getCause()
返回null
。什么情况下会发生这种情况?我的意思是,我得到了这个异常,因为任务抛出了一些异常,但它怎么会丢失呢?
I have a futures task that is doing some I/O operations over the socket to a server. When I use the get()
method of the task to retrieve the result, I am getting ExecutionException
, but with no cause i.e. getCause()
returns null
. In what scenario does this happen? I mean, I'm getting this exception since the task threw some exception right , but how can it go missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Java 中是合法的,但我从未在野外见过这种情况。
is legal in Java, but I've never seen that in the wild.