mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-03 09:37:38 +00:00
231e468e19
git-subtree-dir: erigon-lib git-subtree-mainline:3c8cbda809
git-subtree-split:93d9c9d9fe
32 lines
802 B
C++
32 lines
802 B
C++
#ifndef STARKWARE_UTILS_ERROR_HANDLING_H_
|
|
#define STARKWARE_UTILS_ERROR_HANDLING_H_
|
|
|
|
#include <exception>
|
|
#include <string>
|
|
#include <utility>
|
|
|
|
namespace starkware {
|
|
|
|
class StarkwareException : public std::exception {
|
|
public:
|
|
explicit StarkwareException(std::string message) : message_(std::move(message)) {}
|
|
const char* what() const noexcept { return message_.c_str(); } // NOLINT
|
|
|
|
private:
|
|
std::string message_;
|
|
};
|
|
|
|
/*
|
|
We use "do {} while(false);" pattern to force the user to use ; after the macro.
|
|
*/
|
|
#define ASSERT(cond, msg) \
|
|
do { \
|
|
if (!(cond)) { \
|
|
throw StarkwareException(msg); \
|
|
} \
|
|
} while (false)
|
|
|
|
} // namespace starkware
|
|
|
|
#endif // STARKWARE_UTILS_ERROR_HANDLING_H_
|