mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-14 07:43:31 -07:00
Fix formatting
This commit is contained in:
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…
Reference in a new issue