Files
Wino-Mail/Wino.Core.Domain/Exceptions/WinoServerException.cs
2025-02-16 11:54:23 +01:00

12 lines
308 B
C#

using System;
namespace Wino.Core.Domain.Exceptions;
/// <summary>
/// All server crash types. Wino Server ideally should not throw anything else than this Exception type.
/// </summary>
public class WinoServerException : Exception
{
public WinoServerException(string message) : base(message) { }
}