]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
For SyncedFoXmlEventsBuffer.java.
authorPeter Bernard West <pbwest@apache.org>
Mon, 11 Nov 2002 17:21:25 +0000 (17:21 +0000)
committerPeter Bernard West <pbwest@apache.org>
Mon, 11 Nov 2002 17:21:25 +0000 (17:21 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@195494 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/xml/UnexpectedStartElementException.java [new file with mode: 0644]

diff --git a/src/org/apache/fop/xml/UnexpectedStartElementException.java b/src/org/apache/fop/xml/UnexpectedStartElementException.java
new file mode 100644 (file)
index 0000000..99f0db1
--- /dev/null
@@ -0,0 +1,32 @@
+/*
+ * $Id$
+ *
+ * Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
+ * For details on use and redistribution please refer to the
+ * LICENSE file included with these sources.
+ *
+ */
+
+package org.apache.fop.xml;
+
+import org.apache.fop.apps.FOPException;
+
+/**
+ * Exception thrown when scanning for one of a set of STARTELEMENTs.
+ * @author <a href="mailto:pbwest@powerup.com.au">Peter B. West</a>
+ * @version $Revision$ $Name$
+ */
+
+public class UnexpectedStartElementException extends FOPException {
+    private static final String tag = "$Name$";
+    private static final String revision = "$Revision$";
+
+    public UnexpectedStartElementException(String message) {
+        super(message);
+    }
+
+    public UnexpectedStartElementException(Throwable e) {
+        super(e);
+    }
+
+}