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){ } + } +}