RegexBot/ModuleLoadException.cs
2024-06-08 21:07:35 -07:00

7 lines
269 B
C#

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>
public class ModuleLoadException(string message) : Exception(message) { }