diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-08-04 13:02:38 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-08-04 13:02:38 +0100 |
commit | 39798db6b8669a8d3b4605a0bc8bb70d65f0b0aa (patch) | |
tree | 4e08dc979793fdc59580604509c81628fb4386cd /lib/msgException.h | |
parent | Split CheckShaderError into shader/program versions (diff) | |
download | ilt-39798db6b8669a8d3b4605a0bc8bb70d65f0b0aa.tar.bz2 ilt-39798db6b8669a8d3b4605a0bc8bb70d65f0b0aa.tar.xz ilt-39798db6b8669a8d3b4605a0bc8bb70d65f0b0aa.zip |
Help exception class for lazy/cached message content
Diffstat (limited to 'lib/msgException.h')
-rw-r--r-- | lib/msgException.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/msgException.h b/lib/msgException.h new file mode 100644 index 0000000..660738d --- /dev/null +++ b/lib/msgException.h @@ -0,0 +1,23 @@ +#pragma once + +#include <optional> +#include <string> + +template<typename BaseException> class MsgException : public BaseException { +protected: + using BaseException::BaseException; + [[nodiscard]] virtual std::string getMsg() const noexcept = 0; + +public: + [[nodiscard]] const char * + what() const noexcept override + { + if (!msg) { + msg.emplace(getMsg()); + } + return msg->c_str(); + } + +private: + mutable std::optional<std::string> msg; +}; |