Relativity.DataExchange.Service.SoapExceptionDetail
Represents a Relativity SOAP-based exception detail data object. This class cannot be inherited, backwards compatibility isn't guaranteed, and should never be consumed by API users.
namespace Relativity.DataExchange.Service
{
public sealed class SoapExceptionDetail
{
public string[] Details { get; set; }
public string ExceptionFullText { get; set; }
public string ExceptionMessage { get; set; }
public string ExceptionTrace { get; set; }
public string ExceptionType { get; set; }
public SoapExceptionDetail();
public SoapExceptionDetail(Exception ex);
}
}