mirror of
https://gitlab.com/niansa/asbots.git
synced 2025-03-06 20:48:25 +01:00
21 lines
489 B
C++
21 lines
489 B
C++
#ifndef __EXCEPTIONS_HPP
|
|
#define __EXCEPTIONS_HPP
|
|
#include <stdexcept>
|
|
|
|
|
|
|
|
struct ParseError : public std::runtime_error {
|
|
using std::runtime_error::runtime_error;
|
|
};
|
|
struct ConnectionError : public std::runtime_error {
|
|
using std::runtime_error::runtime_error;
|
|
};
|
|
struct DesyncError : public std::exception {
|
|
const char *what() const throw() {
|
|
return "Server has desynced!!!";
|
|
}
|
|
DesyncError() {
|
|
std::cout << "DESCONACCREKO" << std::endl;
|
|
}
|
|
};
|
|
#endif
|