mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-24 22:35:39 -04:00
New: Add Subsonic library update and notify (#368)
* New: Add Subsonic library update and notify * New: Subsonic setting for to allow connection via SSL
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user