NadekoBot/NadekoBot.Modules.Utility/Common/Exceptions/StreamRoleNotFoundException.cs
2017-09-30 00:46:33 +02:00

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.")
{
}
}
}