From 67b7e4e7bf4cf31f68514814e372949544398bb0 Mon Sep 17 00:00:00 2001 From: "annalyovushkina@yandex.ru" Date: Fri, 6 Sep 2024 12:51:46 +0400 Subject: [PATCH] =?UTF-8?q?=D0=BF=D0=BE=D0=BF=D0=BA=D0=B0=20=D0=BE=D1=88?= =?UTF-8?q?=D0=B8=D0=B1=D0=BE=D0=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../KOP_Labs/Exceptions/NoBordersExceptioncs.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 KOP_Labs/KOP_Labs/Exceptions/NoBordersExceptioncs.cs diff --git a/KOP_Labs/KOP_Labs/Exceptions/NoBordersExceptioncs.cs b/KOP_Labs/KOP_Labs/Exceptions/NoBordersExceptioncs.cs new file mode 100644 index 0000000..b6fecec --- /dev/null +++ b/KOP_Labs/KOP_Labs/Exceptions/NoBordersExceptioncs.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace CustomComponents.Exceptions +{ + public class NoBordersExceptioncs + { + public NoBordersExceptioncs() { } + public NoBordersExceptioncs(string message) : base(message){ } + } +}