mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 13:33:34 -07:00
Database corruption message linking to wiki
This commit is contained in:
parent
416d505316
commit
2e242aeb7b
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue