blob: 74c6159ca67c2560260e77a847062511ea8bde05 [file] [log] [blame]
package org.apache.felix.ipojo.test.scenarios.component;
public class BadConstructors {
public BadConstructors() {
throw new Error("BAD");
}
public BadConstructors(int i) {
// DO NOTHING
}
public static BadConstructors createBad() {
throw new RuntimeException("BAD");
}
public static BadConstructors createBad2(int o) {
return new BadConstructors(o);
}
}