1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-01-19 06:00:27 +00:00
Radarr/NzbDrone.Core/Configuration/InvalidConfigFileException.cs

16 lines
370 B
C#
Raw Normal View History

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)
{
}
}
}