1 18 package org.apache.beehive.netui.pageflow; 19 20 21 27 public class MismatchedPageInputException 28 extends MismatchedActionOutputException 29 { 30 public MismatchedPageInputException( String actionName, FlowController flowController, String actionOutputName, 31 String forwardName, String expectedType, String actualType ) 32 { 33 super( actionName, flowController, actionOutputName, forwardName, expectedType, actualType ); 34 } 35 36 public String getPageInputName() 37 { 38 return getActionOutputName(); 39 } 40 } 41 | Popular Tags |