Fix formatting

pull/1160/head
Tyrrrz 11 months ago
parent e89701e3f9
commit 5397b0db7d

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

Loading…
Cancel
Save