use of org.mule.runtime.core.api.lifecycle.StartException in project mule by mulesoft.
the class MuleServiceManager method start.
@Override
public void start() throws MuleException {
File servicesFolder = getServicesFolder();
if (!servicesFolder.exists()) {
servicesFolder.mkdir();
}
try {
registeredServices = serviceDiscoverer.discoverServices();
wrappedServices = wrapServices(registeredServices);
startServices();
} catch (Exception e) {
throw new StartException(e, this);
}
}
Aggregations