1 18 package org.apache.beehive.netui.pageflow; 19 20 21 29 public class InfiniteReturnToActionException extends PageFlowException 30 { 31 public InfiniteReturnToActionException( String actionName, FlowController fc ) 32 { 33 super( actionName, fc ); 34 } 35 36 protected Object [] getMessageArgs() 37 { 38 return new Object []{ getActionName(), getFlowControllerURI() }; 39 } 40 41 protected String [] getMessageParts() 42 { 43 return new String [] 44 { 45 "Infinite loop of returnTo=\"action\" for action ", 46 " in Page Flow ", 47 "." 48 }; 49 } 50 51 55 public boolean causeMayBeSessionExpiration() 56 { 57 return false; 58 } 59 } 60 | Popular Tags |