Relativity.DataExchange.Service.ObjectManagerExceptionHelper
Defines a static helper method to inspect common Object Manager exceptions.
namespace Relativity.DataExchange.Service
{
internal static class ObjectManagerExceptionHelper
{
public const int MaxInnerExceptionDepth = 16;
public static bool IsNonFatalError(Exception exception);
public static bool IsInvalidParametersError(Exception exception);
public static bool IsServerSideDirectoryNotFoundError(Exception exception);
public static bool IsServerSideFileNotFoundError(Exception exception);
public static bool IsServerSideFilePermissionsError(Exception exception);
}
}