component-dsl/src/main/java/org/apache/aries/component/dsl/internal/RecoverOSGi.java [49:60]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        @Override
        public OSGiResult publish(T t) {
            try {
                return op.publish(t);
            } catch (Exception e) {
                throw new PublisherRethrowException(e);
            }
        }

        @Override
        public <E extends Exception> OSGiResult error(T t, Exception e) throws E {
            try {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



component-dsl/src/main/java/org/apache/aries/component/dsl/internal/RecoverWithOSGi.java [51:62]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        @Override
        public OSGiResult publish(T t) {
            try {
                return op.publish(t);
            } catch (Exception e) {
                throw new PublisherRethrowException(e);
            }
        }

        @Override
        public <E extends Exception> OSGiResult error(T t, Exception e) throws E {
            try {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



