#pragma once
#include <exception>
#include <string>
#include "common/api.h"
namespace lbug {
namespace common {
class LBUG_API Exception : public std::exception {
public:
explicit Exception(std::string msg);
public:
const char* what() const noexcept override { return exception_message_.c_str(); }
private:
std::string exception_message_;
};
} // namespace common
} // namespace lbug