DefaultCapabilityRegistry registry = capabilityRegistryProvider.get();
registry.load();
// fire event when the registry is loaded and ready for use
eventBus.post(new Ready(registry));
}
catch (final Exception e) {
// fail hard with an error to stop further server activity
throw new Error("Could not boot capabilities", e);
}