You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
441 B
19 lines
441 B
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) |
|
{ |
|
} |
|
}
|
|
|