RegexBot/ModuleLoadException.cs

8 lines
269 B
C#
Raw Normal View History

namespace RegexBot;
/// <summary>
/// Represents an error occurring when a module attempts to create a new guild state object
/// (that is, read or refresh its configuration).
/// </summary>
2024-06-09 04:07:35 +00:00
public class ModuleLoadException(string message) : Exception(message) { }