01: /*
02: * Copyright Aduna (http://www.aduna-software.com/) (c) 1997-2006.
03: *
04: * Licensed under the Aduna BSD-style license.
05: */
06: package org.openrdf.query.parser.serql.ast;
07:
08: public class VisitorException extends Exception {
09:
10: private static final long serialVersionUID = 1998121176957145353L;
11:
12: public VisitorException() {
13: super ();
14: }
15:
16: public VisitorException(String msg) {
17: super (msg);
18: }
19:
20: public VisitorException(String msg, Throwable t) {
21: super (msg, t);
22: }
23:
24: public VisitorException(Throwable t) {
25: super(t);
26: }
27: }
|