blob: 7a1969164f0ec0e8c93a4e1095e4f2d456eefdec [file] [log] [blame]
duke6e45e102007-12-01 00:00:00 +00001/*
ohair2283b9d2010-05-25 15:58:33 -07002 * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved.
duke6e45e102007-12-01 00:00:00 +00003 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
ohair2283b9d2010-05-25 15:58:33 -070019 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
duke6e45e102007-12-01 00:00:00 +000022 */
23/**
24 * @test
25 * @bug 4126805
ohair9deb3062009-05-18 10:36:38 -070026 * @ignore until 6842022 is resolved
duke6e45e102007-12-01 00:00:00 +000027 * @run applet RestrictedBundleTest.html
28 * @summary I was able to reproduce this bug with 1.2b2, but not with the current 1.2
29 * build. It appears that it was fixed by changes to the class-loading mechanism,
30 * which now throws a ClassNotFoundException where before it was propagating through
31 * a bogus ClassFormatError. Therefore, this is just an additional regression test
32 * for whatever bug that was.
33 */
34
35import java.util.ResourceBundle;
36import java.applet.Applet;
37import java.util.MissingResourceException;
38
39public class RestrictedBundleTest extends Applet {
40 public void init() {
41 super.init();
42 try {
43 ResourceBundle bundle = ResourceBundle.getBundle("unavailable.base.name");
44
45 throw new RuntimeException("Error: MissingResourceException is not thrown");
46 }
47 catch (MissingResourceException e) {
48 // other types of error will propagate back out into the test harness
49 System.out.println("OK");
50 }
51 }
52}