XLKit  0.1.0
 All Classes Files Functions Typedefs Macros Groups
xlException.hpp
Go to the documentation of this file.
1 
6 // Copyright (c) 2014 Edward Lam
7 //
8 // All rights reserved. This software is distributed under the
9 // Mozilla Public License, v. 2.0 ( http://www.mozilla.org/MPL/2.0/ ).
10 //
11 // Redistributions of source code must retain the above copyright
12 // and license notice and the following restrictions and disclaimer.
13 //
14 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
15 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
16 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
17 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
18 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY INDIRECT, INCIDENTAL,
19 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
20 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 
26 #ifndef XLKIT_XLEXCEPTON_HPP
27 #define XLKIT_XLEXCEPTON_HPP
28 
29 #include <xlkit/xldebug.hpp>
30 #include <xlkit/xlversion.hpp>
31 #include <stdexcept>
32 #include <string>
33 
34 namespace xlkit {
36 namespace XLKIT_VERSION_NAME {
37 
40 class xlException : public std::runtime_error {
41  public:
42  xlException(const std::string& what) : std::runtime_error(what) {
43  }
44 };
45 
47 #define XLKIT_THROW(MSG) \
48  throw xlkit::xlException( \
49  xlkit::detail::debugMsgS(__FILE__,__LINE__,__FUNCTION__,MSG)) \
50 
51 
52 } // namespace XLKIT_VERSION_NAME
53 } // namespace xlkit
54 
55 #endif // XLKIT_XLEXCEPTON_HPP
#define XLKIT_VERSION_NAME
Version namespace for this library.
Definition: xlversion.hpp:33
XLKit debugging facility for the XLDBG() macro.
#define XLKIT_USE_VERSION_NAMESPACE
Macro used to pull the versioned namespace into the main xlkit namepsace.
Definition: xlversion.hpp:52
XLKit version defines.
A std::runtime_error subclass for exceptions thrown by the libary, via XLKIT_THROW() ...
Definition: xlException.hpp:40