mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-01 16:06:24 +02:00
16 lines
295 B
C#
16 lines
295 B
C#
using System;
|
|
|
|
namespace NzbDrone.Core.Notifications.Xbmc
|
|
{
|
|
public class InvalidXbmcVersionException : Exception
|
|
{
|
|
public InvalidXbmcVersionException()
|
|
{
|
|
}
|
|
|
|
public InvalidXbmcVersionException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|