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

}