MambaCommandNotFoundException constructor
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(', ')}'}',
);