Package org.eclipse.osgi.service.resolver

Examples of org.eclipse.osgi.service.resolver.ResolverHookException


        Debug.printStackTrace(t);
    }
    String message = NLS.bind(Msg.SERVICE_FACTORY_EXCEPTION, hook.getClass().getName(), method);
    if (causeFailure) {
      releaseHooks(hookRefs);
      throw new ResolverHookException(message, t);
    }
    BundleException be = new BundleException(message, BundleException.REJECTED_BY_HOOK, t);
    context.framework.publishFrameworkEvent(FrameworkEvent.ERROR, hookBundle, be);
  }
View Full Code Here

TOP

Related Classes of org.eclipse.osgi.service.resolver.ResolverHookException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.