From c853d7790c9d93d0de52f7afd92b2ca615c81b27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9D=D0=B8=D0=BA=D0=B8=D1=82=D0=B0=20=D0=9F=D0=BE=D1=82?= =?UTF-8?q?=D0=B0=D0=BF=D0=BE=D0=B2?= Date: Thu, 28 Nov 2024 00:02:15 +0400 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=BE=D0=B7=D0=B4=D0=B0=D0=BB=20=D0=B8?= =?UTF-8?q?=D1=81=D0=BA=D0=BB=D1=8E=D1=87=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=B4?= =?UTF-8?q?=D0=BB=D1=8F=20CheckedListBox?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../MaxCheckedItemsCountExceedException.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 WinFormSolution/Components/Exceptions/MaxCheckedItemsCountExceedException.cs diff --git a/WinFormSolution/Components/Exceptions/MaxCheckedItemsCountExceedException.cs b/WinFormSolution/Components/Exceptions/MaxCheckedItemsCountExceedException.cs new file mode 100644 index 0000000..666aca6 --- /dev/null +++ b/WinFormSolution/Components/Exceptions/MaxCheckedItemsCountExceedException.cs @@ -0,0 +1,13 @@ +namespace Components.Exceptions +{ + internal class MaxCheckedItemsCountExceedException : Exception + { + public MaxCheckedItemsCountExceedException() + { + } + + public MaxCheckedItemsCountExceedException(string? message) : base(message) + { + } + } +}