Sonarr/src/NzbDrone.Core/Datastore/CorruptDatabaseException.cs

29 lines
728 B
C#
Raw Normal View History

using System;
using NzbDrone.Common.Exceptions;
namespace NzbDrone.Core.Datastore
{
public class CorruptDatabaseException : SonarrStartupException
{
2021-08-03 04:43:28 +00:00
public CorruptDatabaseException(string message, params object[] args)
: base(message, args)
{
}
2021-08-03 04:43:28 +00:00
public CorruptDatabaseException(string message)
: base(message)
{
}
2021-08-03 04:43:28 +00:00
public CorruptDatabaseException(string message, Exception innerException, params object[] args)
: base(innerException, message, args)
{
}
2021-08-03 04:43:28 +00:00
public CorruptDatabaseException(string message, Exception innerException)
: base(innerException, message)
{
}
}
}