blob: 7b2645d91fcb3891f3c751e70f689f665478735d [file] [log] [blame]
package trycatch_in;
import java.net.MalformedURLException;
public class TestThisConstructorCall {
public TestThisConstructorCall(int i) throws MalformedURLException {
}
public TestThisConstructorCall() {
this(10);
}
}