LeviLamina
Loading...
Searching...
No Matches
SnbtErrorCode.h
1#pragma once
2
3namespace ll::nbt::detail {
4enum class SnbtErrorCode : int {
5 NotTheExpectedType,
6 UnexpectedEofEncountered,
7 UnterminatedComment,
8 NotANumber,
9 NumberOutOfRange,
10 NotAUnicodeEncodedHex,
11 IllegalOmittedQuotesString,
12 QuoteEscapeNotMatch,
13 Utf8Codepoint2NotInRange,
14 Utf8Codepoint2Missing,
15 Utf8Codepoint1Missing,
16 IllegalEscape,
17 IllegalUtf8Character,
18 UnclosedBracket,
19 IllegalKeyValueSeparator,
20 EmptyString,
21};
22}