DiscordChatExporter/DiscordChatExporter.Core/Exceptions/DiscordChatExporterException.cs
2023-12-10 22:38:34 +02:00

12 lines
279 B
C#

using System;
namespace DiscordChatExporter.Core.Exceptions;
public class DiscordChatExporterException(
string message,
bool isFatal = false,
Exception? innerException = null
) : Exception(message, innerException)
{
public bool IsFatal { get; } = isFatal;
}