MireaBackend/Endpoint/Common/Exceptions/ControllerArgumentException.cs

5 lines
145 B
C#
Raw Normal View History

using System;
namespace Mirea.Api.Endpoint.Common.Exceptions;
public class ControllerArgumentException(string message) : Exception(message);