1 /* Copyright (C) 2005 The cairomm Development Team
2  *
3  * This library is free software; you can redistribute it and/or
4  * modify it under the terms of the GNU Library General Public
5  * License as published by the Free Software Foundation; either
6  * version 2 of the License, or (at your option) any later version.
7  *
8  * This library is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * Library General Public License for more details.
12  *
13  * You should have received a copy of the GNU Library General Public
14  * License along with this library; if not, write to the Free Software
15  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16  * 02110-1301, USA.
17  */
18 
19 #ifndef __CAIRO_EXCEPTION_H
20 #define __CAIRO_EXCEPTION_H
21 
22 #include <cairomm/enums.h>
23 #include <stdexcept>
24 
25 #if defined(_MSC_VER) && (_MSC_VER < 1900)
26 #define _ALLOW_KEYWORD_MACROS 1
27 #define noexcept _NOEXCEPT
28 #endif
29 
30 namespace Cairo
31 {
32 
33 /**
34  */
35 class logic_error: public std::logic_error
36 {
37 public:
38   explicit logic_error(ErrorStatus status);
39   ~logic_error() noexcept override;
40 
41   //virtual const char* what() const noexcept;
42   ErrorStatus get_status_code() const;
43 
44 private:
45   ErrorStatus m_status;
46 };
47 
48 } // namespace Cairo
49 
50 #endif // __CAIRO_EXCEPTION_H
51 
52 // vim: ts=2 sw=2 et
53