Home » openjdk-7 » java » util » [javadoc | source]
java.util
public class: MissingResourceException [javadoc | source]
java.lang.Object
   java.lang.Throwable
      java.lang.Exception
         java.lang.RuntimeException
            java.util.MissingResourceException

All Implemented Interfaces:
    Serializable

Signals that a resource is missing.
Fields inherited from java.lang.RuntimeException:
serialVersionUID
Fields inherited from java.lang.Exception:
serialVersionUID
Constructor:
 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:
    s - the detail message
    className - the name of the resource class
    key - the key for the missing resource.
 MissingResourceException(String message,
    String className,
    String key,
    Throwable cause) 
    Constructs a MissingResourceException with message, className, key, and cause. This constructor is package private for use by ResourceBundle.getBundle.
    Parameters:
    message - the detail message
    className - the name of the resource class
    key - the key for the missing resource.
    cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
Method from java.util.MissingResourceException Summary:
getClassName,   getKey
Methods from java.lang.Throwable:
addSuppressed,   fillInStackTrace,   getCause,   getLocalizedMessage,   getMessage,   getStackTrace,   getStackTraceDepth,   getStackTraceElement,   getSuppressed,   initCause,   printStackTrace,   printStackTrace,   printStackTrace,   setStackTrace,   toString
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from java.util.MissingResourceException Detail:
 public String getClassName() 
    Gets parameter passed by constructor.
 public String getKey() 
    Gets parameter passed by constructor.