Files
Wino-Mail/Wino.Core.Domain/Exceptions/GoogleAuthenticationException.cs
Burak Kaan Köse 12d3814626 Initial commit.
2024-04-18 01:44:37 +02:00

8 lines
204 B
C#

namespace Wino.Core.Domain.Exceptions
{
public class GoogleAuthenticationException : System.Exception
{
public GoogleAuthenticationException(string message) : base(message) { }
}
}