View Javadoc

1   package org.paneris.bibliomania;
2   
3   import org.melati.poem.AccessPoemException;
4   
5     public class NotLoggedInException extends AccessPoemException {
6       /**
7        * 
8        */
9       private static final long serialVersionUID = 1L;
10  
11      public String getMessage() {
12        return "You must be logged in to view this information";
13      }
14    }
15