Most visited

Recently visited

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.

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

From class java.lang.Throwable
From class java.lang.Object

Public constructors

MissingResourceException

Added in API level 1
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
String getClassName ()

Gets parameter passed by constructor.

Returns
String the name of the resource class

getKey

Added in API level 1
String getKey ()

Gets parameter passed by constructor.

Returns
String the key for the missing resource

Hooray!