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