Database corruption message linking to wiki

pull/3440/head
Bogdan 3 weeks ago
parent 695b8b2ae1
commit 9957f734a5

@ -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)
{ {
} }
} }

Loading…
Cancel
Save