Exception: java.util.MissingResourceException

Signals that a resource is missing.
Authors:
@author Mark Davis
See:
@see Exception
@see java.util.ResourceBundle
Version:
@version 1.16, 12/19/03
Since:
@since JDK1.1

Inheritance

Superclass tree: Implements:

Methods

  • MissingResourceExceptiontop

    public MissingResourceException(String s, String className, String key)
    Constructs a MissingResourceException with the specified information. A detail message is a String that describes this particular exception.
    Parameters:
    @param s the detail message
    @param className the name of the resource class
    @param key the key for the missing resource.
    Google Code Search
    Stack Overflow
  • getClassNametop

    public String getClassName()
    Gets parameter passed by constructor.
    Return:
    @return the name of the resource class
    Google Code Search
    Stack Overflow
  • getKeytop

    public String getKey()
    Gets parameter passed by constructor.
    Return:
    @return the key for the missing resource
    Google Code Search
    Stack Overflow