mirror of
https://github.com/Readarr/Readarr.git
synced 2026-02-01 01:31:50 -05:00
NzbDroneException now has inner exception
This commit is contained in:
@@ -15,5 +15,16 @@ protected NzbDroneException(string message)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
protected NzbDroneException(string message, Exception innerException, params object[] args)
|
||||
: base(string.Format(message, args), innerException)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
protected NzbDroneException(string message, Exception innerException)
|
||||
: base(message, innerException)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
namespace NzbDrone.Core.Configuration
|
||||
{
|
||||
public class InvalidConfigFileException : Exception
|
||||
public class InvalidConfigFileException : NzbDroneException
|
||||
{
|
||||
public InvalidConfigFileException(string message, Exception innerException) : base(message, innerException)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user