Database corruption message linking to wiki

This commit is contained in:
Bogdan 2024-04-25 11:18:33 +03:00
parent 811cafd9ae
commit c8a6b9f565
1 changed files with 2 additions and 2 deletions

View File

@ -16,12 +16,12 @@ namespace NzbDrone.Core.Datastore
} }
public CorruptDatabaseException(string message, Exception innerException, params object[] args) public CorruptDatabaseException(string message, Exception innerException, params object[] args)
: base(message, innerException, args) : base(innerException, message, args)
{ {
} }
public CorruptDatabaseException(string message, Exception innerException) public CorruptDatabaseException(string message, Exception innerException)
: base(message, innerException) : base(innerException, message)
{ {
} }
} }