Author: ekoneil
Date: Mon Feb  7 12:52:22 2005
New Revision: 151752

URL: http://svn.apache.org/viewcvs?view=rev&rev=151752
Log:
Add missed file from last change.  Not sure why I didn't notice this in svn 
status...



Added:
    
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/exceptions/IllegalFilterException.java
   (with props)

Added: 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/exceptions/IllegalFilterException.java
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/exceptions/IllegalFilterException.java?view=auto&rev=151752
==============================================================================
--- 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/exceptions/IllegalFilterException.java
 (added)
+++ 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/exceptions/IllegalFilterException.java
 Mon Feb  7 12:52:22 2005
@@ -0,0 +1,41 @@
+/*
+ * Copyright 2004 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * $Header:$
+ */
+package org.apache.beehive.netui.databinding.datagrid.exceptions;
+
+/**
+ *
+ */
+public class IllegalFilterException
+    extends RuntimeException {
+
+    public IllegalFilterException() {
+        super();
+    }
+
+    public IllegalFilterException(String message) {
+        super(message);
+    }
+
+    public IllegalFilterException(Throwable cause) {
+        super(cause);
+    }
+
+    public IllegalFilterException(String message, Throwable cause) {
+        super(message, cause);
+    }
+}

Propchange: 
incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/databinding/datagrid/exceptions/IllegalFilterException.java
------------------------------------------------------------------------------
    svn:eol-style = native


Reply via email to