Newer
Older
InMemoryBus / src / ApplicationCore / Exceptions / BasketNotFoundException.cs
@Derek Comartin Derek Comartin on 17 Jan 2023 236 bytes Init
using System;

namespace Microsoft.eShopWeb.ApplicationCore.Exceptions;

public class BasketNotFoundException : Exception
{
    public BasketNotFoundException(int basketId) : base($"No basket found with id {basketId}")
    {
    }
}