mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 10:18:27 -04:00
20 lines
453 B
C#
20 lines
453 B
C#
#nullable disable
|
|
namespace NadekoBot.Modules.Utility.Common.Exceptions;
|
|
|
|
public class StreamRoleNotFoundException : Exception
|
|
{
|
|
public StreamRoleNotFoundException()
|
|
: base("Stream role wasn't found.")
|
|
{
|
|
}
|
|
|
|
public StreamRoleNotFoundException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public StreamRoleNotFoundException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
} |