public class CompletionException extends RuntimeException
Modifier | Constructor and Description |
---|---|
protected |
CompletionException()
构造一个没有详细消息的
CompletionException 。
|
protected |
CompletionException(String message)
构造具有
CompletionException 详细消息的CompletionException。
|
|
CompletionException(String message, Throwable cause)
构造一个
CompletionException 用指定的详细消息和原因。
|
|
CompletionException(Throwable cause)
构造一个
CompletionException 带指定原因。
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
protected CompletionException()
protected CompletionException(String message)
message
- 详细信息
public CompletionException(String message, Throwable cause)
CompletionException
的详细消息和原因的CompletionException。
message
- 详细信息
cause
- 原因(由
Throwable.getCause()
方法保存供以后检索)
public CompletionException(Throwable cause)
CompletionException
带指定原因。
详细消息被设置为(cause == null ? null : cause.toString())
(它通常包含的类和详细消息cause
)。
cause
- 原因(由
Throwable.getCause()
方法保存供以后检索)
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.