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