OpenVDB 9.0.0
Exceptions.h
Go to the documentation of this file.
1// Copyright Contributors to the OpenVDB Project
2// SPDX-License-Identifier: MPL-2.0
3
4/// @file openvdb_ax/Exceptions.h
5///
6/// @authors Nick Avramoussis, Richard Jones
7///
8/// @brief OpenVDB AX Exceptions
9///
10
11#ifndef OPENVDB_AX_EXCEPTIONS_HAS_BEEN_INCLUDED
12#define OPENVDB_AX_EXCEPTIONS_HAS_BEEN_INCLUDED
13
14#include <openvdb/version.h>
15#include <openvdb/Exceptions.h>
16
17#include <sstream>
18#include <string>
19
20namespace openvdb {
22namespace OPENVDB_VERSION_NAME {
23
24#define OPENVDB_AX_EXCEPTION(_classname) \
25class OPENVDB_API _classname: public Exception \
26{ \
27public: \
28 _classname() noexcept: Exception( #_classname ) {} \
29 explicit _classname(const std::string& msg) noexcept: Exception( #_classname , &msg) {} \
30}
31
32// @note: Compilation errors due to invalid AX code should be collected using a separate logging system.
33// These errors are only thrown upon encountering fatal errors within the compiler/executables themselves
39
40#undef OPENVDB_AX_EXCEPTION
41
42} // namespace OPENVDB_VERSION_NAME
43} // namespace openvdb
44
45#endif // OPENVDB_AX_EXCEPTIONS_HAS_BEEN_INCLUDED
46
#define OPENVDB_AX_EXCEPTION(_classname)
Definition: Exceptions.h:24
Definition: Exceptions.h:36
Definition: Exceptions.h:37
Definition: Exceptions.h:38
Definition: Exceptions.h:35
Definition: Exceptions.h:34
Definition: Exceptions.h:13
#define OPENVDB_VERSION_NAME
The version namespace name for this library version.
Definition: version.h.in:116
#define OPENVDB_USE_VERSION_NAMESPACE
Definition: version.h.in:202