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