import java.util.*;

public class resBundle extends ResourceBundle
{
  public resBundle() throws Throwable { throw new Exception(); }

  public static void main(String[] args)
  {
    System.out.println(getBundle("resBundle"));
  }

  public Enumeration getKeys() { return null; }
  protected Object handleGetObject(String key) { return null; }

}
