Newer
Older
TestingWithoutInterfaces / src / ApplicationCore / Exceptions / DuplicateException.cs
@Derek Comartin Derek Comartin on 5 Dec 2022 200 bytes Init
using System;

namespace Microsoft.eShopWeb.ApplicationCore.Exceptions;

public class DuplicateException : Exception
{
    public DuplicateException(string message) : base(message)
    {

    }

}