Skip to contentMethod: NoSubtypeException()
      1: package de.fhdw.wtf.persistence.exception;
2: 
3: /**
4:  * The inspected type has no subtypes. Procession of incremental changes cannot continue.
5:  * 
6:  */
7: public class NoSubtypeException extends PersistenceException {
8:         
9:         /**
10:          * the message of the exception.
11:          */
12:         private static final String NO_SUBTYPE_MESSAGE = "This class has no subtypes.";
13:         /**
14:          * 
15:          */
16:         private static final long serialVersionUID = 1L;
17:         
18:         /**
19:          * Public Konstruktor zum setzen des Fehlers.
20:          */
21:         public NoSubtypeException() {
22:                 super(NO_SUBTYPE_MESSAGE, null);
23:         }
24: }