Class SLBreakException

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

public final class SLBreakException extends com.oracle.truffle.api.nodes.ControlFlowException
Exception thrown by the break 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: