12 lines
262 B
C#
12 lines
262 B
C#
|
using System;
|
|||
|
|
|||
|
namespace NadekoBot.Modules.Utility.Common.Exceptions
|
|||
|
{
|
|||
|
public class StreamRolePermissionException : Exception
|
|||
|
{
|
|||
|
public StreamRolePermissionException() : base("Stream role was unable to be applied.")
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|