NotEnoughArgumentsException constructor

NotEnoughArgumentsException(
  1. MessageChatContext context
)

Create a new NotEnoughArgumentsException.

Implementation

NotEnoughArgumentsException(MessageChatContext context)
    : super(
        'Not enough arguments for command "${context.command.fullName}": '
        '"${context.rawArguments}"',
        context,
      );