btcpayserver/BTCPayServer/Plugins/Shopify/ShopifyApiException.cs
Andrew Camilleri 5de93f8cc4
Abstract Store integrations (#2384)
* Decouple Shopify from Store

* Decouple shopify from store blob

* Update BTCPayServer.Tests.csproj

* Make sure shopify obj is set

* make shopify a system plugin
2021-04-08 13:37:05 +09:00

12 lines
206 B
C#

using System;
namespace BTCPayServer.Plugins.Shopify
{
public class ShopifyApiException : Exception
{
public ShopifyApiException(string message) : base(message)
{
}
}
}