01: /*
02: * Copyright (c) 2002-2003 by OpenSymphony
03: * All rights reserved.
04: */
05: package com.opensymphony.workflow;
06:
07: /**
08: * Exception thrown to indicate that the query requested is not supported by the
09: * current store
10: * @author Hani Suleiman (hani@formicary.net)
11: * Date: Oct 4, 2003
12: * Time: 5:26:31 PM
13: */
14: public class QueryNotSupportedException extends
15: InternalWorkflowException {
16: //~ Constructors ///////////////////////////////////////////////////////////
17:
18: public QueryNotSupportedException() {
19: }
20:
21: public QueryNotSupportedException(String message) {
22: super (message);
23: }
24:
25: public QueryNotSupportedException(Exception cause) {
26: super (cause);
27: }
28:
29: public QueryNotSupportedException(String message, Exception cause) {
30: super(message, cause);
31: }
32: }
|