valeri/src/error.hpp

16 lines
232 B
C++
Raw Normal View History

#pragma once
enum class ErrorCode {
Success,
2024-07-27 00:01:38 +00:00
OutOfMemory,
2024-07-27 15:25:44 +00:00
IndexOutOfRange,
TypeMismatch,
2024-07-27 22:13:59 +00:00
ReadError,
UnterminatedStringLiteral,
2024-07-28 16:54:04 +00:00
InvalidNumericLiteral,
NotImplemented,
InvalidSymbol,
MalformedList,
2024-08-01 21:45:16 +00:00
KeyError,
};