| java.lang.Object java.lang.Throwable java.lang.Exception org.codehaus.dna.MissingResourceException
MissingResourceException | public class MissingResourceException extends Exception (Code) | | The MissingResourceException is used to signal a problem
retrieving a resource from the ResourceLocator object.
version: $Revision: 1.2 $ $Date: 2004/05/01 09:51:48 $ |
Method Summary | |
public Throwable | getCause() Return the exception that caused this exception if any. | public String | getKey() Return the resource key that caused the problem. |
MissingResourceException | public MissingResourceException(String message, String key)(Code) | | Create a MissingResourceException with specified message
and key.
Parameters: message - the message Parameters: key - the key |
MissingResourceException | public MissingResourceException(String message, String key, Throwable cause)(Code) | | Create a MissingResourceException with specified
message, key and cause.
Parameters: message - the message Parameters: key - the key Parameters: cause - the cause |
getCause | public Throwable getCause()(Code) | | Return the exception that caused this exception if any.
the exception that caused this exception if any. |
getKey | public String getKey()(Code) | | Return the resource key that caused the problem.
the resource key that caused the problem. |
|
|