DocSpace-client/thirdparty/Google.Authenticator/Google.Authenticator/QRException.cs

14 lines
304 B
C#

using System;
namespace Google.Authenticator
{
public class QRException : Exception
{
public QRException(string message) : base(message)
{ }
public QRException(string message, Exception innerException) : base(message, innerException)
{ }
}
}