lidarr/NzbDrone.Core/Configuration/InvalidConfigFileException.cs
2013-09-10 22:55:18 -07:00

15 lines
378 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NzbDrone.Common.Exceptions;
namespace NzbDrone.Core.Configuration
{
public class InvalidConfigFileException : NzbDroneException
{
public InvalidConfigFileException(string message, Exception innerException) : base(message, innerException)
{
}
}
}