file_sys/errors: Extract FS-related error codes to file_sys/errors.h

Keeps filesystem-related error codes in one spot.
This commit is contained in:
Lioncash 2018-11-15 23:27:29 -05:00
parent 87eca5b209
commit b725d1fdf7
4 changed files with 19 additions and 14 deletions

View file

@ -11,9 +11,11 @@ namespace FileSys {
namespace ErrCodes {
enum {
NotFound = 1,
TitleNotFound = 1002,
EntityNotFound = 1002,
SdCardNotFound = 2001,
RomFSNotFound = 2520,
InvalidOffset = 6061,
InvalidSize = 6062,
};
}
@ -29,4 +31,9 @@ constexpr ResultCode ERROR_DIRECTORY_ALREADY_EXISTS(-1);
constexpr ResultCode ERROR_FILE_ALREADY_EXISTS(-1);
constexpr ResultCode ERROR_DIRECTORY_NOT_EMPTY(-1);
constexpr ResultCode ERROR_ENTITY_NOT_FOUND{ErrorModule::FS, ErrCodes::EntityNotFound};
constexpr ResultCode ERROR_SD_CARD_NOT_FOUND{ErrorModule::FS, ErrCodes::SdCardNotFound};
constexpr ResultCode ERROR_INVALID_OFFSET{ErrorModule::FS, ErrCodes::InvalidOffset};
constexpr ResultCode ERROR_INVALID_SIZE{ErrorModule::FS, ErrCodes::InvalidSize};
} // namespace FileSys