自 2025 年 3 月 27 日起,我们建议您使用 android-latest-release
而非 aosp-main
构建 AOSP 并为其做出贡献。如需了解详情,请参阅 AOSP 的变更。
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
FatalHostError
public
class
FatalHostError
extends HarnessRuntimeException
一个异常,表示运行 TradeFederation 的主机上发生了严重的不可恢复错误,并且应关闭 TradeFederation 实例。
摘要
公共构造函数
FatalHostError
public FatalHostError (String msg,
ErrorIdentifier errorId)
创建 FatalHostError
。
参数 |
msg |
String :详细消息 |
errorId |
ErrorIdentifier :关联的错误标识符 |
FatalHostError
public FatalHostError (String msg,
Throwable cause)
创建 FatalHostError
。
参数 |
msg |
String :详细消息 |
cause |
Throwable :严重宿主错误的原始原因。 |
FatalHostError
public FatalHostError (String msg,
Throwable cause,
ErrorIdentifier errorId)
创建 FatalHostError
。
参数 |
msg |
String :详细消息 |
cause |
Throwable :严重宿主错误的原始原因。 |
errorId |
ErrorIdentifier :关联的错误标识符 |
本页面上的内容和代码示例受内容许可部分所述许可的限制。Java 和 OpenJDK 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-07-27。
[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["没有我需要的信息","missingTheInformationINeed","thumb-down"],["太复杂/步骤太多","tooComplicatedTooManySteps","thumb-down"],["内容需要更新","outOfDate","thumb-down"],["翻译问题","translationIssue","thumb-down"],["示例/代码问题","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2025-07-27。"],[],[],null,["# FatalHostError\n==============\n\n\n`\npublic\n\n\nclass\nFatalHostError\n`\n\n\n`\n\n\n`\n\n`\n\nextends `[HarnessRuntimeException](../../../../../../reference/tradefed/com/android/tradefed/error/HarnessRuntimeException.html)`\n\n\n`\n\n`\n\n\n`\n\n|---|---|---------------------------------------------|\n| java.lang.Object |||\n| ↳ | [com.android.tradefed.error.HarnessRuntimeException](../../../../../../reference/tradefed/com/android/tradefed/error/HarnessRuntimeException.html) ||\n| | ↳ | com.android.tradefed.command.FatalHostError |\n\n|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Known direct subclasses [FileUtil.LowDiskSpaceException](../../../../../../reference/tradefed/com/android/tradefed/util/FileUtil.LowDiskSpaceException.html) |--------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------| | [FileUtil.LowDiskSpaceException](../../../../../../reference/tradefed/com/android/tradefed/util/FileUtil.LowDiskSpaceException.html) | Thrown if usable disk space is below minimum threshold. | |\n\n\u003cbr /\u003e\n\n*** ** * ** ***\n\nAn exception that indicates a fatal unrecoverable error has occurred on the host machine running\nTradeFederation, and that the TradeFederation instance should be shut down.\n\nSummary\n-------\n\n| ### Public constructors ||\n|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---|\n| ` `[FatalHostError](../../../../../../reference/tradefed/com/android/tradefed/command/FatalHostError.html#FatalHostError(java.lang.String))`(String msg) ` Creates a [FatalHostError](../../../../../../reference/tradefed/com/android/tradefed/command/FatalHostError.html). |\n| ` `[FatalHostError](../../../../../../reference/tradefed/com/android/tradefed/command/FatalHostError.html#FatalHostError(java.lang.String,%20com.android.tradefed.result.error.ErrorIdentifier))`(String msg, `[ErrorIdentifier](../../../../../../reference/tradefed/com/android/tradefed/result/error/ErrorIdentifier.html)` errorId) ` Creates a [FatalHostError](../../../../../../reference/tradefed/com/android/tradefed/command/FatalHostError.html). |\n| ` `[FatalHostError](../../../../../../reference/tradefed/com/android/tradefed/command/FatalHostError.html#FatalHostError(java.lang.String,%20java.lang.Throwable))`(String msg, Throwable cause) ` Creates a [FatalHostError](../../../../../../reference/tradefed/com/android/tradefed/command/FatalHostError.html). |\n| ` `[FatalHostError](../../../../../../reference/tradefed/com/android/tradefed/command/FatalHostError.html#FatalHostError(java.lang.String,%20java.lang.Throwable,%20com.android.tradefed.result.error.ErrorIdentifier))`(String msg, Throwable cause, `[ErrorIdentifier](../../../../../../reference/tradefed/com/android/tradefed/result/error/ErrorIdentifier.html)` errorId) ` Creates a [FatalHostError](../../../../../../reference/tradefed/com/android/tradefed/command/FatalHostError.html). |\n\nPublic constructors\n-------------------\n\n### FatalHostError\n\n```\npublic FatalHostError (String msg)\n```\n\nCreates a [FatalHostError](../../../../../../reference/tradefed/com/android/tradefed/command/FatalHostError.html).\n\n\u003cbr /\u003e\n\n| Parameters ||\n|-------|---------------------------------------|\n| `msg` | `String`: the detailed message \u003cbr /\u003e |\n\n**See also:**\n\n- [RuntimeException.RuntimeException(String)](../../../../../../reference/tradefed/java/lang/RuntimeException.html#RuntimeException(java.lang.String)) \n\n### FatalHostError\n\n```\npublic FatalHostError (String msg, \n ErrorIdentifier errorId)\n```\n\nCreates a [FatalHostError](../../../../../../reference/tradefed/com/android/tradefed/command/FatalHostError.html).\n\n\u003cbr /\u003e\n\n| Parameters ||\n|-----------|-----------------------------------------------------------|\n| `msg` | `String`: the detailed message \u003cbr /\u003e |\n| `errorId` | `ErrorIdentifier`: the error identifier associated \u003cbr /\u003e |\n\n**See also:**\n\n- [RuntimeException.RuntimeException(String)](../../../../../../reference/tradefed/java/lang/RuntimeException.html#RuntimeException(java.lang.String)) \n\n### FatalHostError\n\n```\npublic FatalHostError (String msg, \n Throwable cause)\n```\n\nCreates a [FatalHostError](../../../../../../reference/tradefed/com/android/tradefed/command/FatalHostError.html).\n\n\u003cbr /\u003e\n\n| Parameters ||\n|---------|-----------------------------------------------------------------|\n| `msg` | `String`: the detailed message \u003cbr /\u003e |\n| `cause` | `Throwable`: the original cause of the fatal host error. \u003cbr /\u003e |\n\n**See also:**\n\n- [RuntimeException.RuntimeException(String, Throwable)](../../../../../../reference/tradefed/java/lang/RuntimeException.html#RuntimeException(java.lang.String,%20java.lang.Throwable)) \n\n### FatalHostError\n\n```\npublic FatalHostError (String msg, \n Throwable cause, \n ErrorIdentifier errorId)\n```\n\nCreates a [FatalHostError](../../../../../../reference/tradefed/com/android/tradefed/command/FatalHostError.html).\n\n\u003cbr /\u003e\n\n| Parameters ||\n|-----------|-----------------------------------------------------------------|\n| `msg` | `String`: the detailed message \u003cbr /\u003e |\n| `cause` | `Throwable`: the original cause of the fatal host error. \u003cbr /\u003e |\n| `errorId` | `ErrorIdentifier`: the error identifier associated \u003cbr /\u003e |\n\n**See also:**\n\n- [RuntimeException.RuntimeException(String, Throwable)](../../../../../../reference/tradefed/java/lang/RuntimeException.html#RuntimeException(java.lang.String,%20java.lang.Throwable))"]]