2013-09-11 00:40:21 +00:00
|
|
|
|
using System;
|
|
|
|
|
using NzbDrone.Common.Exceptions;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Configuration
|
|
|
|
|
{
|
2013-09-11 05:55:18 +00:00
|
|
|
|
public class InvalidConfigFileException : NzbDroneException
|
2013-09-11 00:40:21 +00:00
|
|
|
|
{
|
|
|
|
|
public InvalidConfigFileException(string message, Exception innerException) : base(message, innerException)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|