Uses of Class
jdk.jshell.spi.ExecutionControl.RunException
-
Packages that use ExecutionControl.RunException 软件包 描述 jdk.jshell.execution 提供构建JShell执行引擎的实现支持。jdk.jshell.spi 定义可插拔JShell执行引擎的服务提供程序接口。 -
-
Uses of ExecutionControl.RunException in jdk.jshell.execution
Methods in jdk.jshell.execution that throw ExecutionControl.RunException Modifier and Type 方法 描述 Object
DirectExecutionControl. extensionCommand(String command, Object arg)
Object
StreamingExecutionControl. extensionCommand(String command, Object arg)
String
DirectExecutionControl. invoke(String className, String methodName)
String
JdiDefaultExecutionControl. invoke(String classname, String methodname)
String
StreamingExecutionControl. invoke(String classname, String methodname)
protected String
DirectExecutionControl. throwConvertedInvocationException(Throwable cause)
将用户代码中的传入异常转换为ExecutionControl.ExecutionControlException
的子类型,并抛出转换的异常。protected String
RemoteExecutionControl. throwConvertedInvocationException(Throwable cause)
protected String
DirectExecutionControl. throwConvertedOtherException(Throwable ex)
将代理代码中的传入异常转换为ExecutionControl.ExecutionControlException
的子类型的实例,并抛出转换的异常。protected String
RemoteExecutionControl. throwConvertedOtherException(Throwable ex)
String
DirectExecutionControl. varValue(String className, String varName)
String
RemoteExecutionControl. varValue(String className, String varName)
String
StreamingExecutionControl. varValue(String classname, String varname)
-
Uses of ExecutionControl.RunException in jdk.jshell.spi
Subclasses of ExecutionControl.RunException in jdk.jshell.spi Modifier and Type Class 描述 static class
ExecutionControl.ResolutionException
一个例外,指出已经遇到了一个尚未解决的引用的DeclarationSnippet
。static class
ExecutionControl.StoppedException
static class
ExecutionControl.UserException
发生“正常”用户异常。Methods in jdk.jshell.spi that throw ExecutionControl.RunException Modifier and Type 方法 描述 Object
ExecutionControl. extensionCommand(String command, Object arg)
运行非标准命令(或较新版本的标准命令)。String
ExecutionControl. invoke(String className, String methodName)
通过调用指定的包装类上的方法来调用可执行代码段。String
ExecutionControl. varValue(String className, String varName)
返回变量的值。
-