1 18 package org.apache.beehive.netui.pageflow; 19 20 21 25 public class LoginExpiredException 26 extends NotLoggedInException 27 { 28 public LoginExpiredException( String actionName, FlowController fc ) 29 { 30 super( actionName, fc ); 31 } 32 33 public String [] getMessageParts() 34 { 35 return new String [] 36 { 37 "Action ", 38 " on Page Flow ", 39 " requires a current user, but there is no logged-in user. This may be due to an expired session." 40 }; 41 } 42 } 43 | Popular Tags |