Skip to content

Commit

Permalink
add missing constructors
Browse files Browse the repository at this point in the history
  • Loading branch information
Arkrissym committed Oct 9, 2024
1 parent 94dbbc3 commit 5d775bf
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Discord.C++/Exceptions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@ DiscordCPP::ClientException::ClientException(std::string what)
: DiscordException(std::move(what)) {
}

DiscordCPP::DisconnectException::DisconnectException(std::string what)
: DiscordException(std::move(what)) {
}

DiscordCPP::CanceledException::CanceledException(std::string what)
: DiscordException(std::move(what)) {
}

DiscordCPP::SizeError::SizeError(std::string what)
: DiscordException(std::move(what)) {
}
Expand Down

0 comments on commit 5d775bf

Please sign in to comment.