- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在代码中,我遇到了InternalError。我希望能够打印出实际错误。
但是,实际错误远远不在堆栈中。实际错误是Caused by: java.io.IOException: Unable to tunnel through proxy. Proxy returns "HTTP/1.1 504 Gateway Timeout"
Exception in thread "Thread-13" java.lang.InternalError: Should not reach
here
at java.net.HttpConnectSocketImpl.doTunneling(Unknown Source)
at java.net.HttpConnectSocketImpl.doTunnel(Unknown Source)
at java.net.HttpConnectSocketImpl.access$200(Unknown Source)
at java.net.HttpConnectSocketImpl$2.run(Unknown Source)
at java.net.HttpConnectSocketImpl$2.run(Unknown Source)
....
at checker.ui.panels.SystemCheckPanel.run(SystemCheckPanel.java:1058)
at java.lang.Thread.run(Unknown Source)
Caused by: java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
... 15 more
Caused by: java.io.IOException: Unable to tunnel through proxy. Proxy returns "HTTP/1.1 504 Gateway Timeout"
at sun.net.www.protocol.http.HttpURLConnection.doTunneling(Unknown Source)
... 19 more'
最佳答案
try {
blah...
} catch (IOException e) {
Throwable cause = e.getCause();
System.out.println(cause.getMessage());
}
关于java - Java打印InternalError实际错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44034502/
尝试使用 PyMySQL 版本 0.8.0 从 Python(版本 3.6.5)将数据帧输出到 MySQL 数据库表中。 SQLAlchemy 版本 1.2.17,数据库服务器为 8.0.1。 相同的
我使用 Django,只是删除并重新创建数据库以刷新表数据。现在,当我尝试执行任何与数据库相关的任务时,我得到: ./manage.py sql portfolio Traceback (most r
我在流式传输数据时遇到以下错误: Google.ApisGoogle.Apis.Requests.RequestError Internal Error [500] Errors [ Mes
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
我们无法获得此异常的确切原因。有谁知道,为什么这个异常发生在android应用程序中?提前致谢。 这是 Exception 的完整堆栈跟踪: Fatal Exception: java.lang.In
当我查找 javascript 错误类型时,我发现根据 MDN 有 7 种错误类型.我可以生成所有核心五个错误,例如 SyntaxError、ReferenceError、RangeError、URI
我在 heroku 上使用 peewee,但根据 peewee 文档,删除相关表必须在代码中完成。 问题是如何? 我有以下型号 class WebPage(Model): title = Char
经常看到以下崩溃日志弹出: java.lang.InternalError: at java.lang.Thread.nativeCreate (Native Method) at java.
尝试让 Elasticsearch 运行并为 PDF 编制索引。我不熟悉Java。它提示的窗口服务器是什么,我该如何修复它? Jun 13 15:57:23 server.mydomain.com j
在我的应用程序中,我在某些设备上遇到了奇怪的崩溃。我以前从未见过这个错误。这是堆栈跟踪 Non-fatal Exception: java.lang.InternalError: Thread sta
我试图在 Ubuntu 环境中运行一个名为 Orphelia ( http://orphelia.gobics.de/index.jsp ) 的程序,但总是返回相同的 java 错误。 Excepti
我尝试运行以下图表: 不幸的是,我收到以下错误消息: tensorflow.python.framework.errors.InternalError: Message length was nega
我正在编写一个函数,可以将新表添加到我的数据库中。我遇到的问题是当表已经存在时我收到错误消息: pymysql.err.InternalError: (1050, "Table 'doesthiswo
我收到此错误: java.lang.InternalError: name is too long to represent at java.lang.ClassLoader.defi
我正尝试使用此 link 从 Tensorflow Hub 微调 Google Colab 上的 BERT 模型. 但是,我遇到了以下错误: InternalError: RET_CHECK fail
我想使用 raspberrypi 中的 python 连接 MySQL RDS DB。(我想使用 select 查询从 MySQL 表'face'中获取 seq。) 我有一个错误,但我无法修复它。 这
我是 Python 和 MySQL 新手,所以我正在使用只读帐户进行练习。我正在尝试创建一个可执行脚本,该脚本基本上要求提供名字、姓氏,然后将它们插入查询并返回结果。以下是我所拥有的以及我收到的错误:
从phone_number返回用户ID GET_USER_ID = "SELECT user_id FROM user WHERE phone_number = {};" 我尝试运行上述查询并收到此错
x = float(stand[1].split(' ')[0]) y = float(stand[1].split(' ')[1]) coordinate = ppy
当我尝试执行 SVN 同步时,出现了这个错误。我想知道为什么会这样,有什么想法吗?重新启动 Eclipse 后它工作得很好,但我想知道是什么原因导致它以及找不到 jar 的可能性。 !ENTRY or
我是一名优秀的程序员,十分优秀!