Added in API level 1

MissingResourceException

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.

Summary

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

Public constructors

MissingResourceException

Added in API level 1
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
s String: the detail message

className String: the name of the resource class

key String: the key for the missing resource.

Public methods

getClassName

Added in API level 1
public String getClassName ()

Gets parameter passed by constructor.

Returns
String the name of the resource class

getKey

Added in API level 1
public String getKey ()

Gets parameter passed by constructor.

Returns
String the key for the missing resource