mirror of
https://github.com/Expand-sys/CCash
synced 2025-12-16 16:12:14 +11:00
10 lines
No EOL
242 B
C++
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?
|
|
}; |