mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
* Decouple Shopify from Store * Decouple shopify from store blob * Update BTCPayServer.Tests.csproj * Make sure shopify obj is set * make shopify a system plugin
11 lines
206 B
C#
11 lines
206 B
C#
using System;
|
|
|
|
namespace BTCPayServer.Plugins.Shopify
|
|
{
|
|
public class ShopifyApiException : Exception
|
|
{
|
|
public ShopifyApiException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|