# Print output for @column tags ?> MissingResourceException - Android SDK | Android Developers

Most visited

Recently visited

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.

See also:

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

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

public String getClassName ()

Gets parameter passed by constructor.

Returns
String the name of the resource class

getKey

public String getKey ()

Gets parameter passed by constructor.

Returns
String the key for the missing resource