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