| #pragma once | |
| #include <exception> | |
| #include <string> | |
| class BlobException : public std::exception | |
| { | |
| public: | |
| explicit BlobException(const std::string& message) : message(message){}; | |
| virtual const char* what() const noexcept override | |
| { | |
| return message.c_str(); | |
| } | |
| private: | |
| std::string message; | |
| }; |