Noi
1149f2800d
Moved modules into the assembly itself to simplify development of further features and reduce complexity in building this project. Additionally, many small adjustments were made, including: - Add documentation to most public methods that had it missing - Minor style updates - Updated readme to reflect near-completion of this rewrite - Remove any last remaining references to old project name Kerobot - Update dependencies
12 lines
423 B
C#
12 lines
423 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 : Exception {
|
|
/// <summary>
|
|
/// Initializes this exception class with the specified error message.
|
|
/// </summary>
|
|
public ModuleLoadException(string message) : base(message) { }
|
|
}
|