Relativity.DataExchange.HttpServiceException
The exception thrown when call to Http server failed (e.g. WebApi or Kepler). This class cannot be inherited.
namespace Relativity.DataExchange
{
public sealed class HttpServiceException : Exception
{
public const bool DefaultFatalValue = false;
public const HttpStatusCode DefaultHttpStatusCode = HttpStatusCode.InternalServerError;
public bool Fatal { get; }
public HttpStatusCode StatusCode { get; }
public HttpServiceException();
public HttpServiceException(string message);
public HttpServiceException(string message, bool fatal);
public HttpServiceException(string message, HttpStatusCode statusCode, bool fatal);
public HttpServiceException(string message, Exception innerException);
public HttpServiceException(string message, Exception innerException, bool fatal);
public HttpServiceException(string message, Exception innerException, HttpStatusCode statusCode, bool fatal);
}
}