2022-03-29 05:03:01 +00:00
|
|
|
|
namespace RegexBot;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2022-07-21 01:55:08 +00:00
|
|
|
|
/// Represents an error occurring when a module attempts to create a new guild state object
|
|
|
|
|
/// (that is, read or refresh its configuration).
|
2022-03-29 05:03:01 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
public class ModuleLoadException : Exception {
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes this exception class with the specified error message.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ModuleLoadException(string message) : base(message) { }
|
|
|
|
|
}
|