CCash/include/error_responses.hpp
2021-06-27 12:47:20 -07:00

10 lines
No EOL
242 B
C++

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