MambaCommandNotFoundException constructor

MambaCommandNotFoundException(
  1. String name,
  2. List<String> parentPath,
  3. List<String> available
)

Implementation

new(String name, List<String> parentPath, List<String> available)
  : super(
      'Command $name was not found under ${parentPath.join(' ')}. ${available.isEmpty ? 'This command has no subcommands.' : 'Available commands: ${available.join(', ')}'}',
    );