summaryrefslogtreecommitdiff
path: root/src/TgException.cpp
blob: 7164ddce5c6d482593b4008c6c6e798ceae523ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "tgbot/TgException.h"

#include <string>

namespace TgBot {

TgException::TgException(const std::string& description, ErrorCode errorCode) 
        : runtime_error(description), errorCode(errorCode)
{
}

}