Overview | Package | Class | Tree | Index | Help
PREV CLASS | NEXT CLASS FRAMES  | NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD DETAIL:  FIELD | CONSTR | METHOD

Class java.util.MissingResourceException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--java.util.MissingResourceException

public class MissingResourceException
extends java.lang.RuntimeException
Signals that a resource is missing.

Version:
1.8, 04/22/98
See Also:
java.io.Exception, ResourceBundle, Serialized Form

Constructor Summary
MissingResourceException(java.lang.String s, java.lang.String className, java.lang.String key)
          Constructs a MissingResourceException with the specified information.
 
Method Summary
java.lang.String getClassName()
          Gets parameter passed by constructor.
java.lang.String getKey()
          Gets parameter passed by constructor.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notifyAll, notify, toString, wait, wait, wait
 

Constructor Detail

MissingResourceException

public MissingResourceException(java.lang.String s,
                                java.lang.String className,
                                java.lang.String key)
Constructs a MissingResourceException with the specified information. A detail message is a String that describes this particular exception.
Parameters:
s - the detail message
classname - the name of the resource class
key - the key for the missing resource.
Method Detail

getClassName

public java.lang.String getClassName()
Gets parameter passed by constructor.

getKey

public java.lang.String getKey()
Gets parameter passed by constructor.

Overview | Package | Class | Tree | Index | Help
PREV CLASS | NEXT CLASS FRAMES  | NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD DETAIL:  FIELD | CONSTR | METHOD