LeviLamina
Loading...
Searching...
No Matches
ClientErrorCode.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock::Http {
6
7enum class ClientErrorCode : int {
8 Success = 0,
9 CannotReadFromFile = 1,
10 CannotWriteToFile = 2,
11 FileAlreadyExists = 3,
12 CleanupFailed = 4,
13 InvalidStatusCode = 5,
14 InvalidUrl = 6,
15 InternalError = 7,
16 UserNotSignedIn = 8,
17 NotInitialized = 9,
18 UnknownError = 10,
19};
20
21}