1 package de.fhdw.wtf.persistence.exception;
2
3 /**
4 * Fehler falls die ClassFacade der Datenbank nicht initialisiert wurde.
5 */
6 public class ClassFacadeUninitializedException extends PersistenceException {
7
8 /**
9 * the message of the exception.
10 */
11 private static final String CLASS_FACADE_UNINITIALIZED_MESSAGE = "The Class Facade has not been initialized yet";
12 /**
13 *
14 */
15 private static final long serialVersionUID = 1L;
16
17 /**
18 * Public Konstruktor zum setzen der Fehlermeldung.
19 */
20 public ClassFacadeUninitializedException() {
21 super(CLASS_FACADE_UNINITIALIZED_MESSAGE, null);
22 }
23 }