public
class
MissingResourceException
extends RuntimeException
java.lang.Object | ||||
↳ | java.lang.Throwable | |||
↳ | java.lang.Exception | |||
↳ | java.lang.RuntimeException | |||
↳ | java.util.MissingResourceException |
Signals that a resource is missing.
See also:
Public constructors | |
---|---|
MissingResourceException(String s, String className, String key)
Constructs a MissingResourceException with the specified information. |
Public methods | |
---|---|
String
|
getClassName()
Gets parameter passed by constructor. |
String
|
getKey()
Gets parameter passed by constructor. |
Inherited methods | |
---|---|
From
class
java.lang.Throwable
| |
From
class
java.lang.Object
|
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 |
String :
the detail message |
className |
String :
the name of the resource class |
key |
String :
the key for the missing resource.
|
String getClassName ()
Gets parameter passed by constructor.
Returns | |
---|---|
String |
the name of the resource class |
String getKey ()
Gets parameter passed by constructor.
Returns | |
---|---|
String |
the key for the missing resource |