Newer
Older
ReliableMessaging / src / ApplicationCore / Exceptions / DuplicateException.cs
@Derek Comartin Derek Comartin on 10 Apr 2023 200 bytes Init
using System;

namespace Microsoft.eShopWeb.ApplicationCore.Exceptions;

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

    }

}