lib/error.hpp: add file errors

Soda
Shwoomple 2022-09-19 16:19:52 +05:30
parent 8b92d24ab9
commit 508b5e67e7
1 changed files with 5 additions and 0 deletions

View File

@ -89,6 +89,11 @@ namespace ErrorCodes {
const uint8_t NOT_YET_KNOWN = 7;
//file errors
const uint8_t FILE_READ_FAILED = 8;
const uint8_t FILE_WRITE_FAILED = 9;
const uint8_t FILE_NOT_FOUND = 10;
const uint8_t UNIMPLEMENTED = 254;
const uint8_t UNKNOWN = 255;