summaryrefslogtreecommitdiff
path: root/java/source/com/artofsolving/jodconverter/openoffice/connection/OpenOfficeException.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/source/com/artofsolving/jodconverter/openoffice/connection/OpenOfficeException.java')
-rw-r--r--java/source/com/artofsolving/jodconverter/openoffice/connection/OpenOfficeException.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/java/source/com/artofsolving/jodconverter/openoffice/connection/OpenOfficeException.java b/java/source/com/artofsolving/jodconverter/openoffice/connection/OpenOfficeException.java
new file mode 100644
index 0000000..05915f5
--- /dev/null
+++ b/java/source/com/artofsolving/jodconverter/openoffice/connection/OpenOfficeException.java
@@ -0,0 +1,29 @@
+//
+// JODConverter - Java OpenDocument Converter
+// Copyright (C) 2004-2007 - Mirko Nasato <mirko@artofsolving.com>
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library 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
+// Lesser General Public License for more details.
+// http://www.gnu.org/copyleft/lesser.html
+//
+package com.artofsolving.jodconverter.openoffice.connection;
+
+public class OpenOfficeException extends RuntimeException {
+
+ private static final long serialVersionUID = 1L;
+
+ public OpenOfficeException(String message) {
+ super(message);
+ }
+
+ public OpenOfficeException(String message, Throwable cause) {
+ super(message, cause);
+ }
+}