From 59785f600fc3b0afe81c9a6677b56be530789722 Mon Sep 17 00:00:00 2001 From: Polianin Nikita Date: Tue, 28 May 2024 07:15:13 +0300 Subject: [PATCH] feat: add argument exception for controllers --- Endpoint/Common/Exceptions/ControllerArgumentException.cs | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Endpoint/Common/Exceptions/ControllerArgumentException.cs diff --git a/Endpoint/Common/Exceptions/ControllerArgumentException.cs b/Endpoint/Common/Exceptions/ControllerArgumentException.cs new file mode 100644 index 0000000..36e6b26 --- /dev/null +++ b/Endpoint/Common/Exceptions/ControllerArgumentException.cs @@ -0,0 +1,5 @@ +using System; + +namespace Mirea.Api.Endpoint.Common.Exceptions; + +public class ControllerArgumentException(string message) : Exception(message); \ No newline at end of file