Skip to content

Package: ToManyObjectsException

ToManyObjectsException

nameinstructionbranchcomplexitylinemethod
ToManyObjectsException()
M: 5 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%

Coverage

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: }