Fix formatting

This commit is contained in:
Tyrrrz 2023-11-16 21:12:41 +02:00
parent e89701e3f9
commit 5397b0db7d

View file

@ -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;