LeviLamina
Loading...
Searching...
No Matches
AsyncErrc.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock::Threading {
6
7enum class AsyncErrc : int {
8 OperationInProgress = 1,
9 OperationCanceled = 2,
10 OperationThrewException = 3,
11 UnableToExecute = 4,
12 UnexpectedError = 5,
13 InvalidState = 6,
14};
15
16}