- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- jdk.jshell.spi.ExecutionControl.ExecutionControlException
-
- jdk.jshell.spi.ExecutionControl.RunException
-
- jdk.jshell.spi.ExecutionControl.ResolutionException
-
- All Implemented Interfaces:
-
Serializable
- Enclosing interface:
- ExecutionControl
public static class ExecutionControl.ResolutionException extends ExecutionControl.RunException
一个例外,表示遇到了未解决的引用的一个DeclarationSnippet
。与启动
SPIResolutionException
(一个RuntimeException
)对比,嵌入在生成的对角码中。 另外,与此对比UnresolvedReferenceException
高电平异常(与DeclarationSnippet
主API中提供的参考)。- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 ResolutionException(int id, StackTraceElement[] stackElements)
构造一个异常,指示遇到未解析引用的DeclarationSnippet
。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 int
id()
检索未解析的标识符的内部标识符。-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
ResolutionException
public ResolutionException(int id, StackTraceElement[] stackElements)
构造一个异常,指示遇到未解析引用的DeclarationSnippet
。- 参数
-
id
- 具体方法的内部标识符 -
stackElements
- 堆栈跟踪
-
-