Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyrrrz committed Nov 16, 2023
1 parent e89701e commit 5397b0d
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 5397b0d

Please sign in to comment.