summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwptools.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/lwptools.hxx')
-rw-r--r--lotuswordpro/source/filter/lwptools.hxx13
1 files changed, 13 insertions, 0 deletions
diff --git a/lotuswordpro/source/filter/lwptools.hxx b/lotuswordpro/source/filter/lwptools.hxx
index 913cc31b5232..5111582ed9b2 100644
--- a/lotuswordpro/source/filter/lwptools.hxx
+++ b/lotuswordpro/source/filter/lwptools.hxx
@@ -71,6 +71,7 @@
#include "xfilter/xfdatestyle.hxx"
#include "xfilter/xftimestyle.hxx"
#include <rtl/textenc.h>
+#include <stdexcept>
// 01/19/2005
const sal_uInt32 UNITS_PER_INCH = 65536L * 72L;
@@ -141,6 +142,18 @@ inline sal_Bool LwpTools::IsEvenNumber(sal_uInt16& nNumber)
return nNumber%2? sal_False : sal_True;
}
+class BadSeek : public std::runtime_error
+{
+public:
+ BadSeek() : std::runtime_error("Lotus Word Pro Bad Seek") { }
+};
+
+class BadDecompress : public std::runtime_error
+{
+public:
+ BadDecompress() : std::runtime_error("Lotus Word Pro Bad Decompress") { }
+};
+
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */