001 /* 002 * @deprecated class no longer in use 003 */ 004 package railo.runtime.exp; 005 public final class ReturnException extends Exception { 006 007 private Object returnValue; 008 009 public ReturnException(Object returnValue) { 010 this.returnValue=returnValue; 011 } 012 013 /** 014 * @return the returnValue 015 */ 016 public Object getReturnValue() { 017 return returnValue; 018 } 019 }