TDME2 1.9.121
NetworkException.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
9
11
12/**
13 * Base exception class for network exceptions
14 * @author Andreas Drewke
15 */
17public:
18 /**
19 * @brief public constructor
20 * @param &message message exception message
21 */
22 NetworkException(const string &message) throw();
23};
Base exception class for network exceptions.
NetworkException(const string &message)
public constructor
Exception base class.
Definition: ExceptionBase.h:20