blob: 68e5a6c9cb62eae4898b7fd63706dafa1dd743a2 [file] [log] [blame]
package activator.error2;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
public class Activator implements BundleActivator {
public void start(BundleContext context) throws Exception {
throw new RuntimeException();
}
public void stop(BundleContext context) throws Exception {
// TODO Auto-generated method stub
}
}