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