NadekoBot/NadekoBot.Core/Modules/Utility/Common/Exceptions/StreamRoleNotFoundException.cs

12 lines
246 B
C#

using System;
namespace NadekoBot.Modules.Utility.Common.Exceptions
{
public class StreamRoleNotFoundException : Exception
{
public StreamRoleNotFoundException() : base("Stream role wasn't found.")
{
}
}
}