5e0ea324c3
* Sdk * Objects * Supressed IDE warnings via editor config instead of nowarn * Nullability and other warnings * using * Fixed warnings * Important fix * More fixes
13 lines
307 B
C#
13 lines
307 B
C#
namespace Speckle.Sdk.Credentials;
|
|
|
|
public sealed class AuthFlowException : Exception
|
|
{
|
|
public AuthFlowException(string? message, Exception? innerException)
|
|
: base(message, innerException) { }
|
|
|
|
public AuthFlowException(string? message)
|
|
: base(message) { }
|
|
|
|
public AuthFlowException() { }
|
|
}
|