Files
dpm-core/include/error.hpp
Chris Punches 5be17a0a05 cleaning up
2025-02-23 04:20:52 -05:00

12 lines
245 B
C++

#pragma once
// global errors for the core DPM routing/execution component
enum class DPMError {
SUCCESS,
PATH_NOT_FOUND,
PATH_NOT_DIRECTORY,
PERMISSION_DENIED,
MODULE_NOT_FOUND,
MODULE_LOAD_FAILED,
INVALID_MODULE
};