Files
Wino-Mail/Wino.Core.Domain/Exceptions/GoogleAuthenticationException.cs
Burak Kaan Köse cf9869b71e Revert "File scoped namespaces"
This reverts commit d31d8f574e.
2025-02-16 11:43:30 +01:00

8 lines
204 B
C#

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