Skip to content

Method: SitzungsException(String)

1: package util.exceptions;
2:
3: /**
4: * Soll geworfen werden, falls es Probleme mit dem Zugriff der Schnittstelle gibt.
5: */
6: public class SitzungsException extends PPSException {
7:         
8:         /**
9:          * Brauchen wir bestimmt eines Tages.
10:          */
11:         private static final long serialVersionUID = 4469635861813190274L;
12:         
13:         /**
14:          * Erstellt eine neue SitzungsException.
15:          *
16:          * @param string
17:          * Nachricht der Exception.
18:          */
19:         public SitzungsException(final String string) {
20:                 super(string);
21:         }
22:         
23: }