01: /*
02: * Copyright Aduna (http://www.aduna-software.com/) (c) 2007.
03: *
04: * Licensed under the Aduna BSD-style license.
05: */
06: package org.openrdf.query.dawg;
07:
08: import org.openrdf.OpenRDFException;
09:
10: /**
11: * An exception that is thrown to indicate that the parsing of a DAWG Test
12: * Result Set graph failed due to an incompatible or incomplete graph.
13: */
14: public class DAWGTestResultSetParseException extends OpenRDFException {
15:
16: private static final long serialVersionUID = -8655777672973690037L;
17:
18: /**
19: * Creates a new DAWGTestResultSetParseException.
20: *
21: * @param msg
22: * An error message.
23: */
24: public DAWGTestResultSetParseException(String msg) {
25: super (msg);
26: }
27:
28: /**
29: * Creates a new DAWGTestResultSetParseException wrapping another exception.
30: *
31: * @param cause
32: * The cause of the exception.
33: */
34: public DAWGTestResultSetParseException(Throwable cause) {
35: super (cause);
36: }
37:
38: /**
39: * Creates a new DAWGTestResultSetParseException wrapping another exception.
40: *
41: * @param msg
42: * An error message.
43: * @param cause
44: * The cause of the exception.
45: */
46: public DAWGTestResultSetParseException(String msg, Throwable cause) {
47: super(msg, cause);
48: }
49: }
|