Class SLContinueException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.oracle.truffle.api.nodes.ControlFlowException
com.oracle.truffle.sl.nodes.controlflow.SLContinueException
All Implemented Interfaces:
Serializable

public final class SLContinueException extends com.oracle.truffle.api.nodes.ControlFlowException
Exception thrown by the continue statement and caught by the loop statement. Since the exception is stateless, i.e., has no instance fields, we can use a SINGLETON to avoid memory allocation during interpretation.
See Also: