Display a better error message when config.xml is corrupt

This commit is contained in:
Mark McDowall 2013-09-10 17:40:21 -07:00
parent 56f695577c
commit 92cc41edeb
3 changed files with 32 additions and 3 deletions

View file

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