KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > spoon > support > reflect > eval > ReturnException


1 package spoon.support.reflect.eval;
2
3 import spoon.reflect.code.CtReturn;
4
5 public class ReturnException extends RuntimeException JavaDoc {
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