View Javadoc
1   package de.fhdw.wtf.persistence.exception;
2   
3   /**
4    * Fehler falls der entsprechende Benutzer nicht eingeloggt ist.
5    */
6   public class MandantNotLoggedInException extends PersistenceException {
7   	
8   	/**
9   	 * 
10  	 */
11  	private static final long serialVersionUID = 1L;
12  	
13  	/**
14  	 * Public Konstruktor zum setzen der Fehlermeldung.
15  	 */
16  	public MandantNotLoggedInException() {
17  		super("Could not perform operation because root for Mandant not logged in", null);
18  	}
19  	
20  }