feat: add argument exception for controllers

This commit is contained in:
Polianin Nikita 2024-05-28 07:15:13 +03:00
parent fb6e119a34
commit 59785f600f

View File

@ -0,0 +1,5 @@
using System;
namespace Mirea.Api.Endpoint.Common.Exceptions;
public class ControllerArgumentException(string message) : Exception(message);