blob: 95ad1a0a43618e6d3806e75e1368d78a4f67aed2 [file] [log] [blame]
package activator.error3;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
public class Activator implements BundleActivator {
public void start(BundleContext context) throws Exception {
// nothing
}
public void stop(BundleContext context) throws Exception {
throw new RuntimeException();
}
}