/[classpath]/classpath/java/util/ResourceBundle.java
ViewVC logotype

Diff of /classpath/java/util/ResourceBundle.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.24.2.3 by gnu_andrew, Sun Jan 16 15:15:12 2005 UTC revision 1.24.2.4 by gnu_andrew, Wed Feb 16 01:11:42 2005 UTC
# Line 173  public abstract class ResourceBundle Line 173  public abstract class ResourceBundle
173          if (o != null)          if (o != null)
174            return o;            return o;
175        }        }
176    
177      throw new MissingResourceException("Key not found", getClass().getName(),      String className = getClass().getName();
178                                         key);      throw new MissingResourceException("Key '" + key
179                                           + "'not found in Bundle: "
180                                           + className, className, key);
181    }    }
182    
183    /**    /**
# Line 491  public abstract class ResourceBundle Line 493  public abstract class ResourceBundle
493          catch (IOException ex)          catch (IOException ex)
494            {            {
495              MissingResourceException mre = new MissingResourceException              MissingResourceException mre = new MissingResourceException
496                ("Failed to load bundle", localizedName, "");                ("Failed to load bundle: " + localizedName, localizedName, "");
497              mre.initCause(ex);              mre.initCause(ex);
498              throw mre;              throw mre;
499            }            }

Legend:
Removed from v.1.24.2.3  
changed lines
  Added in v.1.24.2.4

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26