src/jdk.jshell/share/classes/jdk/jshell/spi/SPIResolutionException.java

Print this page

        

*** 31,43 **** * {@link jdk.jshell.Snippet.Status#RECOVERABLE_DEFINED RECOVERABLE_DEFINED} * user method, this exception is thrown. * <p> * This exception is seen by the execution engine, but not seen by * the end user nor through the JShell API. - * - * @see ExecutionEnv#createUnresolvedReferenceException(int, - * java.lang.StackTraceElement[]) */ @SuppressWarnings("serial") // serialVersionUID intentionally omitted public class SPIResolutionException extends RuntimeException { private final int id; --- 31,40 ----
*** 58,69 **** /** * Retrieves the internal identifer of the unresolved identifer. * * @return the internal identifer - * @see ExecutionEnv#createUnresolvedReferenceException(int, - * java.lang.StackTraceElement[]) */ public int id() { return id; } } --- 55,64 ----