mirror of
https://github.com/Readarr/Readarr
synced 2026-04-21 12:21:08 +02:00
Database corruption message linking to wiki
This commit is contained in:
parent
695b8b2ae1
commit
9957f734a5
1 changed files with 2 additions and 2 deletions
|
|
@ -16,12 +16,12 @@ public CorruptDatabaseException(string message)
|
|||
}
|
||||
|
||||
public CorruptDatabaseException(string message, Exception innerException, params object[] args)
|
||||
: base(message, innerException, args)
|
||||
: base(innerException, message, args)
|
||||
{
|
||||
}
|
||||
|
||||
public CorruptDatabaseException(string message, Exception innerException)
|
||||
: base(message, innerException)
|
||||
: base(innerException, message)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue