Updated Changelog
[centerim/davrieb.git] / libicq2000 / libicq2000 / exceptions.h
blobdebe2f696616073341158b04997193fac4e77152
1 /*
2 * Exceptions
4 * Copyright (C) 2001 Barnaby Gray <barnaby@beedesign.co.uk>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #ifndef EXCEPTIONS_H
23 #define EXCEPTIONS_H
25 #include <string>
26 #include <exception>
28 namespace ICQ2000 {
30 class ParseException : public std::exception {
31 private:
32 std::string m_errortext;
34 public:
35 ParseException(const std::string& text);
36 ~ParseException() throw() { }
38 const char* what() const throw();
43 #endif