2017-05-27 08:19:27 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
2017-07-17 19:42:36 +00:00
|
|
|
|
namespace NadekoBot.Modules.Searches.Common.Exceptions
|
2017-05-27 08:19:27 +00:00
|
|
|
|
{
|
|
|
|
|
public class StreamNotFoundException : Exception
|
|
|
|
|
{
|
|
|
|
|
public StreamNotFoundException(string message) : base($"Stream '{message}' not found.")
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|