MissingResourceException(String message,
String className,
String key,
Throwable cause) {
super(message, cause);
this.className = className;
this.key = key;
}
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.)
|