Skip to content

Method: ObjectNotFoundException()

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