mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-24 22:35:39 -04:00
f77a2feeef
* Stylecop Rules and Fixes
18 lines
376 B
C#
18 lines
376 B
C#
using NzbDrone.Common.Exceptions;
|
|
|
|
namespace NzbDrone.Core.Notifications.Subsonic
|
|
{
|
|
public class SubsonicException : NzbDroneException
|
|
{
|
|
public SubsonicException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public SubsonicException(string message, params object[] args)
|
|
: base(message, args)
|
|
{
|
|
}
|
|
}
|
|
}
|