You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by bl...@apache.org on 2005/09/30 19:21:43 UTC

svn commit: r292815 - /cocoon/trunk/src/java/org/apache/cocoon/generation/RequestParseException.java

Author: bloritsch
Date: Fri Sep 30 10:21:41 2005
New Revision: 292815

URL: http://svn.apache.org/viewcvs?rev=292815&view=rev
Log:
I thought I added this earlier

Added:
    cocoon/trunk/src/java/org/apache/cocoon/generation/RequestParseException.java

Added: cocoon/trunk/src/java/org/apache/cocoon/generation/RequestParseException.java
URL: http://svn.apache.org/viewcvs/cocoon/trunk/src/java/org/apache/cocoon/generation/RequestParseException.java?rev=292815&view=auto
==============================================================================
--- cocoon/trunk/src/java/org/apache/cocoon/generation/RequestParseException.java (added)
+++ cocoon/trunk/src/java/org/apache/cocoon/generation/RequestParseException.java Fri Sep 30 10:21:41 2005
@@ -0,0 +1,31 @@
+/*
+ * Copyright 1999-2005 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.
+ */
+package org.apache.cocoon.generation;
+
+import org.xml.sax.SAXException;
+
+public final class RequestParseException extends SAXException
+{
+    public RequestParseException(String message)
+    {
+        super(message, null);
+    }
+
+    public RequestParseException(String message, Exception cause)
+    {
+        super(message, cause);
+    }
+}