mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 02:08:27 -04:00
19 lines
394 B
C#
19 lines
394 B
C#
#nullable disable
|
|
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)
|
|
{
|
|
}
|
|
} |