public void close()

in boot/src/main/java/org/apache/karaf/minho/boot/service/LifeCycleService.java [83:96]


    public void close() {
        log.info("Stopping lifecycle service");
        final IllegalStateException ise = new IllegalStateException("Can't stop lifecycle service");
        shutdownCallbacks.forEach(runnable -> {
            try {
                runnable.run();
            } catch (final Exception e) {
                ise.addSuppressed(e);
            }
        });
        if (ise.getSuppressed().length > 0) {
            throw ise;
        }
    }