namespace Bit.RustSDK; /// /// Exception thrown when the Rust SDK operations fail /// 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) { } }