mirror of
https://github.com/Readarr/Readarr
synced 2025-12-19 23:04:49 +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)
|
|
{
|
|
}
|
|
}
|
|
}
|