mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-31 20:54:31 +01:00
16 lines
309 B
C#
16 lines
309 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|