mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-27 17:28:41 +00:00
57 lines
1.1 KiB
C++
57 lines
1.1 KiB
C++
// Luanti
|
|
// SPDX-License-Identifier: LGPL-2.1-or-later
|
|
// Copyright (C) 2013-2017 celeron55, Perttu Ahola <celeron55@gmail.com>
|
|
|
|
#pragma once
|
|
|
|
#include "exceptions.h"
|
|
|
|
namespace con
|
|
{
|
|
/*
|
|
Exceptions
|
|
*/
|
|
|
|
class PeerNotFoundException : public BaseException
|
|
{
|
|
public:
|
|
PeerNotFoundException(const char *s) : BaseException(s) {}
|
|
};
|
|
|
|
class ConnectionException : public BaseException
|
|
{
|
|
public:
|
|
ConnectionException(const char *s) : BaseException(s) {}
|
|
};
|
|
|
|
class ConnectionBindFailed : public BaseException
|
|
{
|
|
public:
|
|
ConnectionBindFailed(const char *s) : BaseException(s) {}
|
|
};
|
|
|
|
class InvalidIncomingDataException : public BaseException
|
|
{
|
|
public:
|
|
InvalidIncomingDataException(const char *s) : BaseException(s) {}
|
|
};
|
|
|
|
}
|
|
|
|
class SocketException : public BaseException
|
|
{
|
|
public:
|
|
SocketException(const std::string &s) : BaseException(s) {}
|
|
};
|
|
|
|
class ResolveError : public BaseException
|
|
{
|
|
public:
|
|
ResolveError(const std::string &s) : BaseException(s) {}
|
|
};
|
|
|
|
class SendFailedException : public BaseException
|
|
{
|
|
public:
|
|
SendFailedException(const std::string &s) : BaseException(s) {}
|
|
};
|