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