Skip to content

Package: MandantNotLoggedInException

MandantNotLoggedInException

nameinstructionbranchcomplexitylinemethod
MandantNotLoggedInException()
M: 5 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%

Coverage

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: }