mirror of
https://github.com/bitwarden/server
synced 2025-12-06 00:03:34 +00:00
Adds a Rust SDK for performing seed related cryptograhic operations. It depends on internal portions of our Rust SDK. Primarily parts of the bitwarden-crypto crate.
20 lines
441 B
C#
20 lines
441 B
C#
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)
|
|
{
|
|
}
|
|
}
|