1 18 package org.apache.beehive.netui.pageflow; 19 20 import org.apache.beehive.netui.pageflow.internal.ReturnToException; 21 22 23 34 public class NoCurrentPageFlowException extends ReturnToException 35 { 36 public NoCurrentPageFlowException( String actionName, Forward fwd ) 37 { 38 super( actionName, fwd, null ); 39 } 40 41 protected String [] getMessageParts() 42 { 43 return new String []{ "No current page flow for return-to=\"", "\" on action ", "." }; 44 } 45 46 50 public boolean causeMayBeSessionExpiration() 51 { 52 return true; 53 } 54 } 55 | Popular Tags |