1 2 3 4 5 6 7 8 9 10
#include "tgbot/TgException.h" #include <string> namespace TgBot { TgBot::TgException::TgException(const std::string& description) : runtime_error(description) { } }