1 18 package org.apache.beehive.netui.pageflow; 19 20 21 29 public class EmptyNestingStackException extends PageFlowException 30 { 31 public EmptyNestingStackException( 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 []{ "Empty nesting stack for returned action ", " from Page Flow ", "." }; 44 } 45 46 50 public boolean causeMayBeSessionExpiration() 51 { 52 return true; 53 } 54 } 55 | Popular Tags |