Bumped copyright dates for 2013
[barry.git] / desktop / src / error.h
blobc923afeba9c831c3ff36722ea976a42efb553528
1 ///
2 /// \file error.h
3 /// Exception classes specific to the desktop
4 ///
6 /*
7 Copyright (C) 2009-2013, Net Direct Inc. (http://www.netdirect.ca/)
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU General Public License in the COPYING file at the
19 root directory of this project for more details.
22 #ifndef __BARRYDESKTOP_ERROR_H__
23 #define __BARRYDESKTOP_ERROR_H__
25 #include <stdexcept>
26 #include <string>
28 /// \addtogroup exceptions
29 /// @{
32 // DlError
34 /// Represents and stores the error message from the last
35 /// dlopen() related error.
36 ///
37 class DlError : public std::runtime_error
39 static std::string GetMsg(const std::string &msg);
41 public:
42 DlError(const std::string &msg);
45 /// @}
47 #endif