|
@ -27,17 +27,40 @@ DEALINGS IN THE SOFTWARE. |
|
|
from discord.errors import DiscordException |
|
|
from discord.errors import DiscordException |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
__all__ = ['CommandError', 'MissingRequiredArgument', 'BadArgument', |
|
|
__all__ = ( |
|
|
'PrivateMessageOnly', 'NoPrivateMessage', 'CheckFailure', |
|
|
'CommandError', |
|
|
'CommandNotFound', 'DisabledCommand', 'CommandInvokeError', |
|
|
'MissingRequiredArgument', |
|
|
'TooManyArguments','UserInputError', 'CommandOnCooldown', |
|
|
'BadArgument', |
|
|
'NotOwner', 'MissingRole', 'BotMissingRole', 'MissingAnyRole', |
|
|
'PrivateMessageOnly', |
|
|
'BotMissingAnyRole','MissingPermissions', 'BotMissingPermissions', |
|
|
'NoPrivateMessage', |
|
|
'NSFWChannelRequired', 'ConversionError', 'BadUnionArgument', |
|
|
'CheckFailure', |
|
|
'ArgumentParsingError', 'UnexpectedQuoteError', 'InvalidEndOfQuotedStringError', |
|
|
'CommandNotFound', |
|
|
'ExpectedClosingQuoteError', 'ExtensionError', 'ExtensionAlreadyLoaded', |
|
|
'DisabledCommand', |
|
|
'ExtensionNotLoaded', 'NoEntryPointError', 'ExtensionFailed', |
|
|
'CommandInvokeError', |
|
|
'ExtensionNotFound'] |
|
|
'TooManyArguments', |
|
|
|
|
|
'UserInputError', |
|
|
|
|
|
'CommandOnCooldown', |
|
|
|
|
|
'NotOwner', |
|
|
|
|
|
'MissingRole', |
|
|
|
|
|
'BotMissingRole', |
|
|
|
|
|
'MissingAnyRole', |
|
|
|
|
|
'BotMissingAnyRole', |
|
|
|
|
|
'MissingPermissions', |
|
|
|
|
|
'BotMissingPermissions', |
|
|
|
|
|
'NSFWChannelRequired', |
|
|
|
|
|
'ConversionError', |
|
|
|
|
|
'BadUnionArgument', |
|
|
|
|
|
'ArgumentParsingError', |
|
|
|
|
|
'UnexpectedQuoteError', |
|
|
|
|
|
'InvalidEndOfQuotedStringError', |
|
|
|
|
|
'ExpectedClosingQuoteError', |
|
|
|
|
|
'ExtensionError', |
|
|
|
|
|
'ExtensionAlreadyLoaded', |
|
|
|
|
|
'ExtensionNotLoaded', |
|
|
|
|
|
'NoEntryPointError', |
|
|
|
|
|
'ExtensionFailed', |
|
|
|
|
|
'ExtensionNotFound', |
|
|
|
|
|
) |
|
|
|
|
|
|
|
|
class CommandError(DiscordException): |
|
|
class CommandError(DiscordException): |
|
|
r"""The base exception type for all command related errors. |
|
|
r"""The base exception type for all command related errors. |
|
|