mirror of
https://github.com/edubart/otclient.git
synced 2025-04-30 01:29:21 +02:00
13 lines
213 B
C++
13 lines
213 B
C++
#ifndef NETWORKEXCEPTION_H
|
|
#define NETWORKEXCEPTION_H
|
|
|
|
#include "declarations.h"
|
|
|
|
class NetworkException : public Exception
|
|
{
|
|
public:
|
|
NetworkException(const std::string& what) : Exception(what) { }
|
|
};
|
|
|
|
#endif
|