mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-17 15:44:26 +01:00
13 lines
316 B
C#
13 lines
316 B
C#
using System;
|
|
|
|
namespace BTCPayServer.Plugins.Bringin;
|
|
|
|
public class BringinException : Exception
|
|
{
|
|
private readonly BringinClient.BringinErrorResponse _error;
|
|
|
|
public BringinException(BringinClient.BringinErrorResponse error):base(error.Message?? error.ErrorMessage)
|
|
{
|
|
_error = error;
|
|
}
|
|
} |