2024-08-05 00:36:26 +02:00
|
|
|
using System;
|
|
|
|
|
|
2025-02-16 11:54:23 +01:00
|
|
|
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
|
2024-08-05 00:36:26 +02:00
|
|
|
{
|
2025-02-16 11:54:23 +01:00
|
|
|
public WinoServerException(string message) : base(message) { }
|
2024-08-05 00:36:26 +02:00
|
|
|
}
|