public class MT {
  public static void m() throws MyException {
    throw new MyException("This is an error!");
  }
  public static void main(String args[]) throws MyException {
    m();
  }
}
