8 lines
192 B
C#
8 lines
192 B
C#
namespace Wino.Domain.Exceptions
|
|
{
|
|
public class GoogleAuthenticationException : Exception
|
|
{
|
|
public GoogleAuthenticationException(string message) : base(message) { }
|
|
}
|
|
}
|