mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-19 15:04:19 +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
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)
|
|
{
|
|
}
|
|
}
|
|
}
|