1 package spoon.support.reflect.eval; 2 3 import spoon.reflect.code.CtReturn; 4 5 public class ReturnException extends RuntimeException { 6 7 private static final long serialVersionUID = 1L; 8 9 CtReturn<?> returnStatement; 10 11 public ReturnException(CtReturn<?> returnStatement) { 12 this.returnStatement=returnStatement; 13 } 14 15 public CtReturn<?> getReturnStatement() { 16 return returnStatement; 17 } 18 19 } 20 | Popular Tags |