1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-22 07:42:28 +00:00

Database corruption message linking to wiki

This commit is contained in:
Bogdan 2024-04-25 11:18:33 +03:00
parent 416d505316
commit 2e242aeb7b

View file

@ -16,12 +16,12 @@ public CorruptDatabaseException(string message)
} }
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)
{ {
} }
} }