mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-23 22:25:09 -04:00
f77a2feeef
* Stylecop Rules and Fixes
16 lines
383 B
C#
16 lines
383 B
C#
namespace NzbDrone.Core.Notifications.Subsonic
|
|
{
|
|
public class SubsonicAuthenticationException : SubsonicException
|
|
{
|
|
public SubsonicAuthenticationException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public SubsonicAuthenticationException(string message, params object[] args)
|
|
: base(message, args)
|
|
{
|
|
}
|
|
}
|
|
}
|