01: /*
02: * Copyright Aduna (http://www.aduna-software.com/) (c) 2008.
03: *
04: * Licensed under the Aduna BSD-style license.
05: */
06: package org.openrdf.sail.rdbms.exceptions;
07:
08: import org.openrdf.query.QueryEvaluationException;
09:
10: /**
11: * Indicates that an operation is not supported on the database side and must be
12: * evaluated on the client.
13: *
14: * @author James Leigh
15: *
16: */
17: public class UnsupportedRdbmsOperatorException extends
18: QueryEvaluationException {
19: private static final long serialVersionUID = 2135660777365106900L;
20:
21: public UnsupportedRdbmsOperatorException(String string) {
22: super(string);
23: }
24:
25: }
|