mirror of
https://github.com/Readarr/Readarr
synced 2026-01-02 21:53:18 +01:00
12 lines
306 B
C#
12 lines
306 B
C#
using System;
|
|
using NzbDrone.Common.Exceptions;
|
|
|
|
namespace NzbDrone.Core.Configuration
|
|
{
|
|
public class InvalidConfigFileException : NzbDroneException
|
|
{
|
|
public InvalidConfigFileException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|