LeviLamina
Loading...
Searching...
No Matches
JSErrorEnum.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5enum class JSErrorEnum : int {
6 EvalError = 0,
7 RangeError = 1,
8 ReferenceError = 2,
9 SyntaxError = 3,
10 TypeError = 4,
11 UriError = 5,
12 InternalError = 6,
13 AggregateError = 7,
14 NativeErrorCount = 8,
15};