1 18 package org.apache.beehive.netui.pageflow; 19 20 import org.apache.beehive.netui.pageflow.internal.ReturnToException; 21 22 23 31 public class NoPreviousActionException extends ReturnToException 32 { 33 public NoPreviousActionException( String actionName, Forward fwd, FlowController fc ) 34 { 35 super( actionName, fwd, fc ); 36 } 37 38 protected String [] getMessageParts() 39 { 40 return new String []{ "No previous action for return-to=\"", "\" on action ", " in page flow ", "." }; 41 } 42 } 43 | Popular Tags |