Files
server/util/RustSdk/RustSdkException.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
441 B
C#
Raw Normal View History

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)
{
}
}