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

12 lines
246 B
C#
Raw Normal View History

2017-07-19 08:38:14 +00:00
using System;
namespace NadekoBot.Modules.Utility.Common.Exceptions
{
public class StreamRoleNotFoundException : Exception
{
public StreamRoleNotFoundException() : base("Stream role wasn't found.")
{
}
}
}