QuantLib: a free/open-source library for quantitative finance
Fully annotated sources - version 1.32
Loading...
Searching...
No Matches
errors.hpp
1/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
3/*
4 Copyright (C) 2000, 2001, 2002, 2003 RiskMap srl
5 Copyright (C) 2003, 2004, 2005 StatPro Italia srl
6
7 This file is part of QuantLib, a free-software/open-source library
8 for financial quantitative analysts and developers - http://quantlib.org/
9
10 QuantLib is free software: you can redistribute it and/or modify it
11 under the terms of the QuantLib license. You should have received a
12 copy of the license along with this program; if not, please email
13 <quantlib-dev@lists.sf.net>. The license is also available online at
14 <http://quantlib.org/license.shtml>.
15
16 This program is distributed in the hope that it will be useful, but WITHOUT
17 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18 FOR A PARTICULAR PURPOSE. See the license for more details.
19*/
20
25#ifndef quantlib_errors_hpp
26#define quantlib_errors_hpp
27
28#include <ql/qldefines.hpp>
29#include <ql/shared_ptr.hpp>
30#include <boost/assert.hpp>
31#include <boost/current_function.hpp>
32#include <exception>
33#include <sstream>
34#include <string>
35
36namespace QuantLib {
37
39 class Error : public std::exception {
40 public:
44 Error(const std::string& file,
45 long line,
46 const std::string& functionName,
47 const std::string& message = "");
49 const char* what() const noexcept override;
50
51 private:
52 ext::shared_ptr<std::string> message_;
53 };
54
55}
56
57#define QL_MULTILINE_FAILURE_BEGIN do {
58
59/* Disable warning C4127 (conditional expression is constant) when
60 wrapping macros with the do { ... } while(false) construct on MSVC
61*/
62#if defined(BOOST_MSVC)
63 #define QL_MULTILINE_FAILURE_END \
64 __pragma(warning(push)) \
65 __pragma(warning(disable:4127)) \
66 } while(false) \
67 __pragma(warning(pop))
68#else
69 #define QL_MULTILINE_FAILURE_END } while(false)
70#endif
71
72
73#define QL_MULTILINE_ASSERTION_BEGIN do {
74
75/* Disable warning C4127 (conditional expression is constant) when
76 wrapping macros with the do { ... } while(false) construct on MSVC
77*/
78#if defined(BOOST_MSVC)
79 #define QL_MULTILINE_ASSERTION_END \
80 __pragma(warning(push)) \
81 __pragma(warning(disable:4127)) \
82 } while(false) \
83 __pragma(warning(pop))
84#else
85 #define QL_MULTILINE_ASSERTION_END } while(false)
86#endif
87
88
92#define QL_FAIL(message) \
93QL_MULTILINE_FAILURE_BEGIN \
94 std::ostringstream _ql_msg_stream; \
95 _ql_msg_stream << message; \
96 throw QuantLib::Error(__FILE__,__LINE__, \
97 BOOST_CURRENT_FUNCTION,_ql_msg_stream.str()); \
98QL_MULTILINE_FAILURE_END
99
100
104#define QL_ASSERT(condition,message) \
105QL_MULTILINE_ASSERTION_BEGIN \
106if (!(condition)) { \
107 std::ostringstream _ql_msg_stream; \
108 _ql_msg_stream << message; \
109 throw QuantLib::Error(__FILE__,__LINE__, \
110 BOOST_CURRENT_FUNCTION,_ql_msg_stream.str()); \
111} \
112QL_MULTILINE_ASSERTION_END
113
117#define QL_REQUIRE(condition,message) \
118QL_MULTILINE_ASSERTION_BEGIN \
119if (!(condition)) { \
120 std::ostringstream _ql_msg_stream; \
121 _ql_msg_stream << message; \
122 throw QuantLib::Error(__FILE__,__LINE__, \
123 BOOST_CURRENT_FUNCTION,_ql_msg_stream.str()); \
124} \
125QL_MULTILINE_ASSERTION_END
126
130#define QL_ENSURE(condition,message) \
131QL_MULTILINE_ASSERTION_BEGIN \
132if (!(condition)) { \
133 std::ostringstream _ql_msg_stream; \
134 _ql_msg_stream << message; \
135 throw QuantLib::Error(__FILE__,__LINE__, \
136 BOOST_CURRENT_FUNCTION,_ql_msg_stream.str()); \
137} \
138QL_MULTILINE_ASSERTION_END
139
140
141#endif
142
Base error class.
Definition: errors.hpp:39
ext::shared_ptr< std::string > message_
Definition: errors.hpp:52
const char * what() const noexcept override
returns the error message.
Definition: errors.cpp:100
Definition: any.hpp:35