#ifndef __EXCEPTIONS_HPP #define __EXCEPTIONS_HPP #include #include #include 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