mirror of
https://github.com/fergalmoran/Readarr.git
synced 2025-12-22 09:29:59 +00:00
Database corruption message linking to wiki
This commit is contained in:
@@ -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)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user