Skip to content

Commit

Permalink
Database corruption message linking to wiki
Browse files Browse the repository at this point in the history
  • Loading branch information
mynameisbogdan committed Apr 25, 2024
1 parent 0261201 commit ab3dc76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/NzbDrone.Core/Datastore/CorruptDatabaseException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ public CorruptDatabaseException(string message)
}

public CorruptDatabaseException(string message, Exception innerException, params object[] args)
: base(message, innerException, args)
: base(innerException, message, args)
{
}

public CorruptDatabaseException(string message, Exception innerException)
: base(message, innerException)
: base(innerException, message)
{
}
}
Expand Down

0 comments on commit ab3dc76

Please sign in to comment.