Coverage Report - org.paneris.jammyjoes.model.NotLoggedInException
 
Classes in this File Line Coverage Branch Coverage Complexity
NotLoggedInException
0%
0/2
N/A
1
 
 1  
 package org.paneris.jammyjoes.model;
 2  
 
 3  
 import org.melati.poem.AccessPoemException;
 4  
 
 5  0
   public class NotLoggedInException extends AccessPoemException {
 6  
     private static final long serialVersionUID = 1L;
 7  
 
 8  
     public String getMessage() {
 9  0
       return "You must be logged in to view this information";
 10  
     }
 11  
   }
 12