import static Example.method1;
import static Example.method2;
import static Example.method3;

public class WhoThrows {
	public static void main(String[] args) throws MyThrowable {
		method1();
		method2();
		method3();
	}
}
