mirror of
https://gitlab.com/niansa/asbots.git
synced 2025-03-06 20:48:25 +01:00
27 lines
777 B
C++
27 lines
777 B
C++
#ifndef __EXCEPTIONS_HPP
|
|
#define __EXCEPTIONS_HPP
|
|
#include <fmt/format.h>
|
|
#include <string_view>
|
|
#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!!!";
|
|
}
|
|
};
|
|
|
|
struct InsufficientArgsError : public ParseError {
|
|
using ParseError::ParseError;
|
|
|
|
InsufficientArgsError(std::string_view where, size_t expected, size_t given)
|
|
: ParseError::ParseError(fmt::format("In {} event: Insufficient arguments expected. Given {} but expected {}", where, given, expected)) {}
|
|
};
|
|
#endif
|