mirror of
https://github.com/Expand-sys/CCash
synced 2025-12-17 00:22:14 +11:00
11 lines
No EOL
215 B
C++
11 lines
No EOL
215 B
C++
#pragma once
|
|
enum ErrorResponse
|
|
{
|
|
UserNotFound = -1,
|
|
WrongPassword = -2,
|
|
InvalidRequest = -3,
|
|
WrongAdminPassword = -4,
|
|
NameTooLong = -5,
|
|
UserAlreadyExists = -6,
|
|
InsufficientFunds = -7,
|
|
}; |