comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/nodes/ControlFlowException.java @ 7665:386b00821c66

Fix comment.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Fri, 01 Feb 2013 19:50:04 +0100
parents 5a63675be8ca
children 31540ca73e81
comparison
equal deleted inserted replaced
7659:5a63675be8ca 7665:386b00821c66
29 public class ControlFlowException extends Exception { 29 public class ControlFlowException extends Exception {
30 30
31 private static final long serialVersionUID = 3676602078425211386L; 31 private static final long serialVersionUID = 3676602078425211386L;
32 32
33 /** 33 /**
34 * Creates an exception thrown to enter a slow path. 34 * Creates an exception thrown to model control flow.
35 */ 35 */
36 public ControlFlowException(String message, Throwable cause) { 36 public ControlFlowException(String message, Throwable cause) {
37 super(message, cause); 37 super(message, cause);
38 } 38 }
39 } 39 }