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