From 6ba3452087ceead0257af03d3a5a442cdbd04f75 Mon Sep 17 00:00:00 2001 From: Aadhavan Srinivasan Date: Tue, 6 Feb 2024 09:44:08 -0500 Subject: [PATCH] Added new exception constant --- includes/exception_consts.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/exception_consts.hpp b/includes/exception_consts.hpp index a8968ff..078546c 100644 --- a/includes/exception_consts.hpp +++ b/includes/exception_consts.hpp @@ -4,5 +4,6 @@ static const int EXCEPT_CONNREFUSED = 10; static const int EXCEPT_TOOFEWARGS = 15; static const int EXCEPT_INVALIDARGS = 20; +static const int EXCEPT_ADDRNOTAVAIL = 25; #endif