KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > opensymphony > workflow > QueryNotSupportedException


1 /*
2  * Copyright (c) 2002-2003 by OpenSymphony
3  * All rights reserved.
4  */

5 package com.opensymphony.workflow;
6
7
8 /**
9  * Exception thrown to indicate that the query requested is not supported by the
10  * current store
11  * @author Hani Suleiman (hani@formicary.net)
12  * Date: Oct 4, 2003
13  * Time: 5:26:31 PM
14  */

15 public class QueryNotSupportedException extends InternalWorkflowException {
16     //~ Constructors ///////////////////////////////////////////////////////////
17

18     public QueryNotSupportedException() {
19     }
20
21     public QueryNotSupportedException(String JavaDoc message) {
22         super(message);
23     }
24
25     public QueryNotSupportedException(Exception JavaDoc cause) {
26         super(cause);
27     }
28
29     public QueryNotSupportedException(String JavaDoc message, Exception JavaDoc cause) {
30         super(message, cause);
31     }
32 }
33
Popular Tags