CCash/include/error_responses.hpp
2021-06-09 21:20:58 -07:00

12 lines
No EOL
234 B
C++

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