Relativity.Transfer.Aspera.AsperaErrorHelper
namespace Relativity.Transfer.Aspera
{
internal static class AsperaErrorHelper
{
public static string DefaultErrorMessage { get; }
public static bool IsValidErrorCode(int error);
public static bool IsFileNotFoundErrorCode(int error);
public static bool IsFilePermissionsErrorCode(int error);
public static bool IsBadPathErrorCode(int error);
public static bool IsLicenseError(int error);
public static bool IsAuthenticationError(int error);
public static bool IsFatalFaspException(FaspManagerException exception);
public static bool IsErrorMessageVisible(int error);
public static string GetDisplayErrorMessage(SessionStats stats);
public static string GetErrorMessage(int error, string errorDescription);
public static IssueAttributes GetIssueAttributes(int? errorCode, string errorDescription, ClientConfiguration configuration);
}
}