mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-28 23:06:43 -04:00
f77a2feeef
* Stylecop Rules and Fixes
19 lines
425 B
C#
19 lines
425 B
C#
using System;
|
|
using NzbDrone.Common.Exceptions;
|
|
|
|
namespace NzbDrone.Core.Configuration
|
|
{
|
|
public class InvalidConfigFileException : NzbDroneException
|
|
{
|
|
public InvalidConfigFileException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public InvalidConfigFileException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|