Skip to content

Method: NotAbstractException()

1: package de.fhdw.wtf.persistence.exception;
2:
3: /**
4: * The inspected is not abstract. Procession of incremental changes cannot continue.
5: *
6: */
7: public class NotAbstractException extends PersistenceException {
8:         
9:         /**
10:          * the exception of the message.
11:          */
12:         private static final String NOT_ABSTRACT_MESSAGE = "This type must be abstract.";
13:         /**
14:          *
15:          */
16:         private static final long serialVersionUID = 1L;
17:         
18:         /**
19:          * Konstruktor zur Fehlerausgabe.
20:          */
21:         public NotAbstractException() {
22:                 super(NOT_ABSTRACT_MESSAGE, null);
23:         }
24: }