From a797ecb5b548ead42662df4751b874935a822ae7 Mon Sep 17 00:00:00 2001 From: maliming Date: Thu, 21 Oct 2021 14:20:59 +0800 Subject: [PATCH] Add an empty ctor. --- .../Volo/Abp/Http/Client/AbpRemoteCallException.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/framework/src/Volo.Abp.ExceptionHandling/Volo/Abp/Http/Client/AbpRemoteCallException.cs b/framework/src/Volo.Abp.ExceptionHandling/Volo/Abp/Http/Client/AbpRemoteCallException.cs index cd438685a3..f561c4cab7 100644 --- a/framework/src/Volo.Abp.ExceptionHandling/Volo/Abp/Http/Client/AbpRemoteCallException.cs +++ b/framework/src/Volo.Abp.ExceptionHandling/Volo/Abp/Http/Client/AbpRemoteCallException.cs @@ -15,6 +15,11 @@ namespace Volo.Abp.Http.Client public RemoteServiceErrorInfo Error { get; set; } + public AbpRemoteCallException() + { + + } + public AbpRemoteCallException(string message, Exception innerException = null) : base(message, innerException) {