From 5397b0db7d7629921f7382b42c854e15e8192adc Mon Sep 17 00:00:00 2001 From: Tyrrrz <1935960+Tyrrrz@users.noreply.github.com> Date: Thu, 16 Nov 2023 21:12:41 +0200 Subject: [PATCH] Fix formatting --- .../Exceptions/DiscordChatExporterException.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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;