Skip to content
Snippets Groups Projects
Unverified Commit 48678d4e authored by Dimitrios Stoupis's avatar Dimitrios Stoupis
Browse files

Add some error types in the execution error

parent 1787ad1c
No related branches found
No related tags found
No related merge requests found
...@@ -81,7 +81,15 @@ public: ...@@ -81,7 +81,15 @@ public:
* changes. * changes.
*/ */
enum ExecutionErrorType { enum ExecutionErrorType {
UnknownExecutionError = 0 UnknownExecutionError = 0,
/**
* Checksum comparison failed
*/
ChecksumFailed = 1,
/**
* Address of a memory is out of the defined range for the type of memory
*/
AddressOutOfRange = 2,
}; };
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment