yatbcpp
0.0.1
Yet another Telegram Bot CPP Library
inc
exceptions
essential_key_missing.h
Go to the documentation of this file.
1
//
2
// Created by norbert on 21.08.17.
3
//
4
5
#ifndef YATBCPP_EXCEPTION_ESSENTIAL_KEY_MISSING_H
6
#define YATBCPP_EXCEPTION_ESSENTIAL_KEY_MISSING_H
7
8
#include <ostream>
9
#include <string>
10
11
namespace
yatbcpp
{
12
class
essential_key_missing
{
13
public
:
14
essential_key_missing
(std::string
message
);
15
friend
std::ostream&
operator<<
(std::ostream& o,
const
essential_key_missing
& U);
16
friend
std::ostream&
operator<<
(std::ostream& o,
const
essential_key_missing
* U);
17
private
:
18
std::string
message
;
19
};
20
}
21
22
#endif //YATBCPP_EXCEPTION_ESSENTIAL_KEY_MISSING_H
yatbcpp::essential_key_missing
Definition:
essential_key_missing.h:12
yatbcpp::essential_key_missing::essential_key_missing
essential_key_missing(std::string message)
Definition:
essential_key_missing.cc:9
yatbcpp::essential_key_missing::message
std::string message
Definition:
essential_key_missing.h:18
yatbcpp
Definition:
Bot.h:27
yatbcpp::essential_key_missing::operator<<
friend std::ostream & operator<<(std::ostream &o, const essential_key_missing &U)
Definition:
exception_essential_key_missing_ostream.cc:9
Generated by
1.8.13