forked from dials/dials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.h
69 lines (56 loc) · 2.21 KB
/
error.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/* *****************************************************
THIS IS AN AUTOMATICALLY GENERATED FILE. DO NOT EDIT.
*****************************************************
Generated by:
scitbx.generate_error_h.bat
*/
/*! \file
Declarations and macros for exception handling.
*/
#ifndef DIALS_ERROR_H
#define DIALS_ERROR_H
#include <scitbx/error_utils.h>
#define DIALS_CHECK_POINT \
std::cout << __FILE__ << "(" << __LINE__ << ")" << std::endl << std::flush
#define DIALS_CHECK_POINT_MSG(msg) \
std::cout << msg << " @ " __FILE__ << "(" << __LINE__ << ")" << std::endl \
<< std::flush
#define DIALS_EXAMINE(A) \
std::cout << "variable " << #A << ": " << A << std::endl << std::flush
//! Common dials namespace.
namespace dials {
//! All dials exceptions are derived from this class.
class error : public ::scitbx::error_base<error> {
public:
//! General dials error message.
explicit error(std::string const& msg) throw()
: ::scitbx::error_base<error>("dials", msg) {}
//! Error message with file name and line number.
/*! Used by the macros below.
*/
error(const char* file,
long line,
std::string const& msg = "",
bool internal = true) throw()
: ::scitbx::error_base<error>("dials", file, line, msg, internal) {}
};
//! Special class for "Index out of range." exceptions.
/*! These exceptions are propagated to Python as IndexError.
*/
class error_index : public error {
public:
//! Default constructor. The message may be customized.
explicit error_index(std::string const& msg = "Index out of range.") throw()
: error(msg) {}
};
} // namespace dials
//! For throwing an error exception with file name, line number, and message.
#define DIALS_ERROR(msg) SCITBX_ERROR_UTILS_REPORT(dials::error, msg)
//! For throwing an "Internal Error" exception.
#define DIALS_INTERNAL_ERROR() SCITBX_ERROR_UTILS_REPORT_INTERNAL(dials::error)
//! For throwing a "Not implemented" exception.
#define DIALS_NOT_IMPLEMENTED() SCITBX_ERROR_UTILS_REPORT_NOT_IMPLEMENTED(dials::error)
//! Custom dials assertion.
#define DIALS_ASSERT(assertion) \
SCITBX_ERROR_UTILS_ASSERT(dials::error, DIALS_ASSERT, assertion)
#endif // DIALS_ERROR_H