namespace RegexBot; /// /// Represents an error occurring when a module attempts to create a new guild state object /// (that is, read or refresh its configuration). /// public class ModuleLoadException : Exception { /// /// Initializes this exception class with the specified error message. /// public ModuleLoadException(string message) : base(message) { } }