Argentum Online - Servidor
socket_exception.h
1
#ifndef __SOCKET_EXCEPTION_H__
2
#define __SOCKET_EXCEPTION_H__
3
4
#include <stdexcept>
5
#include <string>
6
7
class
ConnectionClosedSocketException
:
public
std::exception {
8
private
:
9
std::string error;
10
11
public
:
12
ConnectionClosedSocketException
();
13
14
virtual
const
char
* what()
const
noexcept
override
;
15
16
~
ConnectionClosedSocketException
();
17
};
18
19
#endif //__SOCKET_EXCEPTION_H__
ConnectionClosedSocketException
Definition:
socket_exception.h:7
include
network
socket_exception.h
Generado por
1.8.19