yatbcpp  0.0.1
Yet another Telegram Bot CPP Library
telegram_api_error.cc
Go to the documentation of this file.
1 //
2 // Created by norbert on 21.08.17.
3 //
4 
5 #include <iostream>
7 
8 using namespace yatbcpp;
9 
10 telegram_api_error::telegram_api_error(int errorcode, std::string message) : errorcode(errorcode), message(message) {
11  std::cerr << this << std::endl;
12 }
Definition: Bot.h:27
telegram_api_error(int errorcode, std::string message)