java.util.MissingResourceException
java.lang.RuntimeException
None
None
New as of JDK 1.1
A MissingResourceException is thrown when a requested resource cannot be found.
public class java.util.MissingResourceException extends java.lang.RuntimeException { // Constructors public MissingResourceException(String s, String classname, String key); // Instance Methods public String getClassName(); public String getKey(); }
public MissingResourceException(String s, String classname, String key)
The detail message.
The resource class that generated this exception.
The key that was used to request a resource.
This constructor creates a MissingResourceException with the given information.
The class name that generated this exception.
This method returns the class name that was used to create this exception.
The key that caused this exception.
This method returns the key that was used to create this exception.
Method |
Inherited From |
Method |
Inherited From |
---|---|---|---|
clone() |
Object |
equals(Object) |
Object |
fillInStackTrace() |
Throwable |
finalize() |
Object |
getClass() |
Object |
getLocalizedMessage() |
Throwable |
getMessage() |
Throwable |
hashCode() |
Object |
notify() |
Object |
notifyAll() |
Object |
printStackTrace() |
Throwable |
printStackTrace(PrintStream) |
Throwable |
printStackTrace(PrintWriter) |
Throwable |
toString() |
Throwable |
wait() |
Object |
wait(long) |
Object |
wait(long, int) |
Object |
Exception, ResourceBundle, RuntimeException