Skip to content

Method: ToManyObjectsException()

1: package de.fhdw.wtf.persistence.exception;
2:
3: /**
4: * The response has to many objects.
5: *
6: */
7: public class ToManyObjectsException extends PersistenceException {
8:         /**
9:          * the message of the exception.
10:          */
11:         private static final String MESSAGE = "There are to many objects in the response";
12:         /**
13:          *
14:          */
15:         private static final long serialVersionUID = 1L;
16:         
17:         /**
18:          * Konstruktor der die entsprechende Fehlermeldung enth�lt.
19:          */
20:         public ToManyObjectsException() {
21:                 super(MESSAGE, null);
22:         }
23: }