summaryrefslogtreecommitdiff
path: root/support/makeglossariesgui/src/java/InvalidSyntaxException.java
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /support/makeglossariesgui/src/java/InvalidSyntaxException.java
Initial commit
Diffstat (limited to 'support/makeglossariesgui/src/java/InvalidSyntaxException.java')
-rw-r--r--support/makeglossariesgui/src/java/InvalidSyntaxException.java35
1 files changed, 35 insertions, 0 deletions
diff --git a/support/makeglossariesgui/src/java/InvalidSyntaxException.java b/support/makeglossariesgui/src/java/InvalidSyntaxException.java
new file mode 100644
index 0000000000..ae7e8eb51d
--- /dev/null
+++ b/support/makeglossariesgui/src/java/InvalidSyntaxException.java
@@ -0,0 +1,35 @@
+/*
+ Copyright (C) 2018 Nicola L.C. Talbot
+ www.dickimaw-books.com
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+*/
+package com.dickimawbooks.makeglossariesgui;
+
+/**
+ * Exception thrown when encountering invalid syntax.
+ */
+public class InvalidSyntaxException extends java.io.IOException
+{
+ public InvalidSyntaxException(String message)
+ {
+ super(message);
+ }
+
+ public InvalidSyntaxException(String message, Throwable e)
+ {
+ super(message, e);
+ }
+}