CCash/include/error_responses.hpp
2021-06-28 19:47:17 -07:00

10 lines
No EOL
240 B
C++

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