From 0d94ed0c8399c89c4113f147a4c59c9be34f5d5a Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Thu, 30 Mar 2023 13:33:17 +0200 Subject: [PATCH] Exceptions - Added new member `NO_DEFAULT_QUEUE` to enum `ErrorType` --- source/tristanable/exceptions.d | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/tristanable/exceptions.d b/source/tristanable/exceptions.d index 399bb1a..20d75c8 100644 --- a/source/tristanable/exceptions.d +++ b/source/tristanable/exceptions.d @@ -4,7 +4,8 @@ public enum ErrorType { QueueExists, QUEUE_NOT_FOUND, - QUEUE_ALREADY_EXISTS + QUEUE_ALREADY_EXISTS, + NO_DEFAULT_QUEUE } public class TristanableException : Exception