java.util
Exception MissingResourceException

public class MissingResourceException
Signals that a resource is missing.
SinceJDK1.1
Version1.25, 05/05/07
AuthorMark Davis
Wiki javadoc Use textile entry format.
Add your comments here.
Constructor Summary
MissingResourceException( String s, String className, String key )
Constructs a MissingResourceException with the specified information.
Method Summary
String getClassName()
Gets parameter passed by constructor.
String getKey()
Gets parameter passed by constructor.
MissingResourceException
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
TypeNameDescription
String s the detail message
String className the name of the resource class
String key the key for the missing resource.
Wiki javadoc Use textile entry format.
Add your comments here.
getClassName
public String getClassName ( )
Gets parameter passed by constructor.
Wiki javadoc Use textile entry format.
Add your comments here.
getKey
public String getKey ( )
Gets parameter passed by constructor.
Wiki javadoc Use textile entry format.
Add your comments here.