mirror of
https://github.com/KeyKeeperApp/KeyKeeper.git
synced 2026-05-13 03:46:33 +03:00
PassStoreFileException: fix exception description in console
This commit is contained in:
@@ -9,10 +9,8 @@ public class PassStoreFileException : Exception
|
|||||||
public static readonly PassStoreFileException UnsupportedVersion = new("unsupported format version");
|
public static readonly PassStoreFileException UnsupportedVersion = new("unsupported format version");
|
||||||
public static readonly PassStoreFileException InvalidCryptoHeader = new("invalid encryption header");
|
public static readonly PassStoreFileException InvalidCryptoHeader = new("invalid encryption header");
|
||||||
public static readonly PassStoreFileException ContentHMACMismatch = new("content HMAC mismatch");
|
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;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user