23 lines
255 B
C
Executable File
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_ */
|