| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException java.util.MissingResourceException
MissingResourceException | public MissingResourceException(String s, String className, String key)(Code) | | Constructs a MissingResourceException with the specified information.
A detail message is a String that describes this particular exception.
Parameters: s - the detail message Parameters: className - the name of the resource class Parameters: key - the key for the missing resource. |
MissingResourceException | MissingResourceException(String message, String className, String key, Throwable cause)(Code) | | Constructs a MissingResourceException with
message , className , key ,
and cause . This constructor is package private for
use by ResourceBundle.getBundle .
Parameters: message - the detail message Parameters: className - the name of the resource class Parameters: key - the key for the missing resource. Parameters: cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value ispermitted, and indicates that the cause is nonexistentor unknown.) |
getClassName | public String getClassName()(Code) | | Gets parameter passed by constructor.
the name of the resource class |
getKey | public String getKey()(Code) | | Gets parameter passed by constructor.
the key for the missing resource |
|
|