Files
quark-kernel/src/errortype.h
2020-07-01 15:47:56 -05:00

23 lines
255 B
C
Executable File

/*
* ErrorType.h
*
* Created on: May 23, 2019
* Author: nathan
*/
#ifndef SRC_ERRORTYPE_H_
#define SRC_ERRORTYPE_H_
enum class ErrorType
{
none,
outOfBounds,
illegalState,
outOfMemory,
invalidArgument
};
#endif /* SRC_ERRORTYPE_H_ */