summaryrefslogtreecommitdiff
path: root/src/TgException.cpp
blob: 03a942c2dd8ca0cf952c7b7665f61e5779464e7c (plain)
1
2
3
4
5
6
7
8
#include "tgbot/TgException.h"

namespace TgBot {

TgBot::TgException::TgException(const std::string& description) : runtime_error(description) {
}

}