valeri/src/error.hpp

10 lines
113 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,
ReadError
};