summaryrefslogtreecommitdiffstats
path: root/writerfilter
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2014-04-02 21:10:16 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2014-04-02 21:18:47 +0200
commit8b867eae9b5ef2f5ec3b296a69751e00d1d07751 (patch)
tree90fb07a289c7d9c6affcdf85eb6e13d63a889b69 /writerfilter
parentwriterfilter: unused SubSequence class (diff)
downloadcore-8b867eae9b5ef2f5ec3b296a69751e00d1d07751.tar.gz
core-8b867eae9b5ef2f5ec3b296a69751e00d1d07751.zip
writerfilter: unused Exception class
Change-Id: I127ef1183a2c146471668680965fa3d72f6a8f81
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/inc/resourcemodel/exceptions.hxx54
1 files changed, 0 insertions, 54 deletions
diff --git a/writerfilter/inc/resourcemodel/exceptions.hxx b/writerfilter/inc/resourcemodel/exceptions.hxx
deleted file mode 100644
index 6abb34cb28ac..000000000000
--- a/writerfilter/inc/resourcemodel/exceptions.hxx
+++ /dev/null
@@ -1,54 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you 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 .
- */
-
-#ifndef _DOCTOK_EXCEPTIONS_HXX
-#define _DOCTOK_EXCEPTIONS_HXX
-
-#include <string>
-#include <WriterFilterDllApi.hxx>
-
-namespace writerfilter {
-using namespace ::std;
-
-class Exception
-{
- string mText;
-
-public:
- Exception(string text) : mText(text) {}
-
- const string & getText() const { return mText; }
-};
-
-class ExceptionNotFound : public Exception
-{
-public:
- ExceptionNotFound(string text) : Exception(text) {}
-};
-
-class ExceptionOutOfBounds : public Exception
-{
-public:
- ExceptionOutOfBounds(string text) : Exception(text) {}
-};
-}
-
-#endif // _DOCTOK_EXCEPTIONS_HXX
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */