diff --git a/DiscordChatExporter.Core/Exceptions/DiscordChatExporterException.cs b/DiscordChatExporter.Core/Exceptions/DiscordChatExporterException.cs index e2554ce2..0f60a95c 100644 --- a/DiscordChatExporter.Core/Exceptions/DiscordChatExporterException.cs +++ b/DiscordChatExporter.Core/Exceptions/DiscordChatExporterException.cs @@ -6,7 +6,11 @@ public class DiscordChatExporterException : Exception { public bool IsFatal { get; } - public DiscordChatExporterException(string message, bool isFatal = false, Exception? innerException = null) + public DiscordChatExporterException( + string message, + bool isFatal = false, + Exception? innerException = null + ) : base(message, innerException) { IsFatal = isFatal;