1
0
mirror of https://github.com/bitwarden/server synced 2025-12-20 10:13:39 +00:00

Add hash password

This commit is contained in:
Hinton
2025-07-28 18:40:54 +02:00
parent 418dbb374c
commit 072f9f2278
5 changed files with 182 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
namespace Bit.RustSDK;
/// <summary>
/// Exception thrown when the Rust SDK operations fail
/// </summary>
public class RustSdkException : Exception
{
public RustSdkException() : base("An error occurred in the Rust SDK operation")
{
}
public RustSdkException(string message) : base(message)
{
}
public RustSdkException(string message, Exception innerException) : base(message, innerException)
{
}
}