From 71fab21dfbcb1d5c1750a0fedcaa137bd7eb4651 Mon Sep 17 00:00:00 2001 From: BodgeMaster <> Date: Wed, 29 Jun 2022 11:32:33 +0200 Subject: [PATCH] Error: add OVERRUN_ERROR --- src/lib/error.h++ | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib/error.h++ b/src/lib/error.h++ index a675363..f8fd555 100644 --- a/src/lib/error.h++ +++ b/src/lib/error.h++ @@ -70,4 +70,7 @@ namespace ErrorCodes { // IndexOutOfRangeException equivalent const uint8_t RANGE_ERROR = 1; + + // when going out of bounds in a non-predetermined way + const uint8_t OVERRUN_ERROR = 2; }