mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
20 lines
429 B
C#
20 lines
429 B
C#
using System;
|
|
|
|
namespace NadekoBot.Modules.Searches.Common.Exceptions
|
|
{
|
|
public class StreamNotFoundException : Exception
|
|
{
|
|
public StreamNotFoundException()
|
|
{
|
|
}
|
|
|
|
public StreamNotFoundException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public StreamNotFoundException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|