mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-27 22:57:09 -04:00
13 lines
249 B
C#
13 lines
249 B
C#
using NzbDrone.Common.Exceptions;
|
|
|
|
namespace NzbDrone.Core.Exceptions
|
|
{
|
|
public class SearchFailedException : NzbDroneException
|
|
{
|
|
public SearchFailedException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|