8 lines
254 B
C#
8 lines
254 B
C#
using Domain.Enums;
|
|
|
|
namespace Application.Exceptions;
|
|
|
|
public class InsufficientParametersException(List<string> missingParameters) : BaseException(EErrorCategory.RequestError, "Insufficient Parameters: " + string.Join(", ", missingParameters))
|
|
{
|
|
|
|
} |