Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Duplicati/CommandLine/RecoveryTool/List.cs')
-rw-r--r--Duplicati/CommandLine/RecoveryTool/List.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Duplicati/CommandLine/RecoveryTool/List.cs b/Duplicati/CommandLine/RecoveryTool/List.cs
index aca6d7136..d14640f14 100644
--- a/Duplicati/CommandLine/RecoveryTool/List.cs
+++ b/Duplicati/CommandLine/RecoveryTool/List.cs
@@ -90,7 +90,7 @@ namespace Duplicati.CommandLine.RecoveryTool
{
var items = ParseListFiles(folder);
if (index < 0 || index >= items.Length)
- throw new Exception(string.Format("Valid range for version is 0 to {1}", items.Length - 1));
+ throw new Duplicati.Library.Interface.UserInformationException(string.Format("Valid range for version is 0 to {0}", items.Length - 1));
return items[index].Value;
}