01: /*
02: * Created on 17.04.2005
03: *
04: */
05: package org.ontoware.rdfreactor.runtime;
06:
07: /**
08: * A <b>RDFDataException</b> is thrown e.g. when doing a (single value) get,
09: * but there are multiple values for the property.
10: *
11: * @author mvo
12: */
13: public class RDFDataException extends RuntimeException {
14:
15: /**
16: * Comment for <code>serialVersionUID</code>
17: */
18: private static final long serialVersionUID = 3257565109529358387L;
19:
20: /**
21: * @param message
22: */
23: public RDFDataException(String message) {
24: super (message);
25: }
26:
27: /**
28: * @param message
29: * @param cause
30: */
31: public RDFDataException(String message, Throwable cause) {
32: super(message, cause);
33: }
34:
35: }
|