mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
20 lines
407 B
C#
20 lines
407 B
C#
|
#nullable enable
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Threading.Tasks;
|
||
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
||
|
namespace BTCPayServer
|
||
|
{
|
||
|
public class JsonHttpException : Exception
|
||
|
{
|
||
|
public JsonHttpException(IActionResult actionResult)
|
||
|
{
|
||
|
ActionResult = actionResult;
|
||
|
}
|
||
|
|
||
|
public IActionResult ActionResult { get; }
|
||
|
}
|
||
|
}
|