12 lines
246 B
C#
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.")
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|