NadekoBot/NadekoBot.Core/Modules/Searches/Common/Exceptions/StreamNotFoundException.cs

12 lines
258 B
C#
Raw Normal View History

using System;
namespace NadekoBot.Modules.Searches.Common.Exceptions
{
public class StreamNotFoundException : Exception
{
public StreamNotFoundException(string message) : base($"Stream '{message}' not found.")
{
}
}
}