btcpayserver/BTCPayServer/Services/Shopify/ShopifyApiException.cs

16 lines
309 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BTCPayServer.Services.Shopify
{
public class ShopifyApiException : Exception
{
public ShopifyApiException(string message) : base(message)
{
}
}
}