valeri/src/error.hpp

15 lines
220 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,
};