DPM-Core/include/error.hpp

12 lines
245 B
C++
Raw Normal View History

2025-02-18 04:10:35 +00:00
#pragma once
2025-02-23 09:20:52 +00:00
// global errors for the core DPM routing/execution component
2025-02-18 04:10:35 +00:00
enum class DPMError {
SUCCESS,
PATH_NOT_FOUND,
PATH_NOT_DIRECTORY,
PERMISSION_DENIED,
MODULE_NOT_FOUND,
MODULE_LOAD_FAILED,
INVALID_MODULE
};