From 48678d4e6b8d0006883828814594329005b9ba84 Mon Sep 17 00:00:00 2001
From: Dimitrios Stoupis <dimitris.apple@gmail.com>
Date: Mon, 3 Dec 2018 21:26:55 +0000
Subject: [PATCH] Add some error types in the execution error

---
 inc/ErrorHandler.hpp | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/inc/ErrorHandler.hpp b/inc/ErrorHandler.hpp
index 56223cac..b18ae744 100644
--- a/inc/ErrorHandler.hpp
+++ b/inc/ErrorHandler.hpp
@@ -81,7 +81,15 @@ public:
 	 * changes.
 	 */
 	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,
 	};
 
 	/**
-- 
GitLab