Add an empty ctor.

pull/10387/head
maliming 4 years ago
parent 9dec319c2c
commit a797ecb5b5
No known key found for this signature in database
GPG Key ID: 096224957E51C89E

@ -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)
{

Loading…
Cancel
Save