winegrower-core/src/main/java/org/apache/winegrower/framework/WinegrowerFramework.java [123:135]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            fireFrameworkEvent(null);
        } catch (final RuntimeException re) {
            state = UNINSTALLED;
            fireFrameworkEvent(re);
            throw re;
        } catch (final Exception e) {
            state = UNINSTALLED;
            fireFrameworkEvent(e);
            throw new BundleException(e.getMessage(), e);
        }
    }

    @Override
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



winegrower-core/src/main/java/org/apache/winegrower/framework/WinegrowerFramework.java [147:159]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            fireFrameworkEvent(null);
        } catch (final RuntimeException re) {
            state = UNINSTALLED;
            fireFrameworkEvent(re);
            throw re;
        } catch (final Exception e) {
            state = UNINSTALLED;
            fireFrameworkEvent(e);
            throw new BundleException(e.getMessage(), e);
        }
    }

    @Override
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



