From 8fe565ca828b54674a7dcad4b317adaf0fb9327f Mon Sep 17 00:00:00 2001 From: Slavasil Date: Thu, 4 Dec 2025 00:25:42 +0300 Subject: [PATCH] PassStoreFileException: fix exception description in console --- src/KeyKeeper/PasswordStore/PassStoreFileException.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/KeyKeeper/PasswordStore/PassStoreFileException.cs b/src/KeyKeeper/PasswordStore/PassStoreFileException.cs index 98e2074..ad858c0 100644 --- a/src/KeyKeeper/PasswordStore/PassStoreFileException.cs +++ b/src/KeyKeeper/PasswordStore/PassStoreFileException.cs @@ -9,10 +9,8 @@ public class PassStoreFileException : Exception public static readonly PassStoreFileException UnsupportedVersion = new("unsupported format version"); public static readonly PassStoreFileException InvalidCryptoHeader = new("invalid encryption header"); public static readonly PassStoreFileException ContentHMACMismatch = new("content HMAC mismatch"); - public string Description { get; } - public PassStoreFileException(string description) + public PassStoreFileException(string description): base(description) { - Description = description; } }