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.model.util;
07:
08: import org.openrdf.OpenRDFException;
09:
10: /**
11: * An exception thrown by {@link GraphUtil} when specific conditions are not
12: * met.
13: *
14: * @author Arjohn Kampman
15: */
16: public class GraphUtilException extends OpenRDFException {
17:
18: private static final long serialVersionUID = 3886967415616842867L;
19:
20: public GraphUtilException() {
21: super ();
22: }
23:
24: public GraphUtilException(String message) {
25: super (message);
26: }
27:
28: public GraphUtilException(Throwable t) {
29: super (t);
30: }
31:
32: public GraphUtilException(String message, Throwable t) {
33: super(message, t);
34: }
35: }
|