CCash/include/error_responses.hpp
2021-06-14 22:14:16 -07:00

10 lines
No EOL
186 B
C++

#pragma once
enum ErrorResponse
{
UserNotFound = -1,
WrongPassword = -2,
InvalidRequest = -3,
NameTooLong = -4,
UserAlreadyExists = -5,
InsufficientFunds = -6,
};