summaryrefslogtreecommitdiff
path: root/src/TgException.cpp
blob: e61e09cb0d94afa8365a2c5ed1ed25053cebc183 (plain)
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) {
}

}