Newer
Older
TestingWithoutInterfaces / src / ApplicationCore / Exceptions / BasketNotFoundException.cs
@Derek Comartin Derek Comartin on 5 Dec 2022 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}")
    {
    }
}