Package org.eclipse.jgit.errors
Class TranslationStringMissingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.eclipse.jgit.errors.TranslationBundleException
org.eclipse.jgit.errors.TranslationStringMissingException
- All Implemented Interfaces:
Serializable
This exception will be thrown when a translation string for a translation
bundle and locale is missing.
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionTranslationStringMissingException
(Class bundleClass, Locale locale, String key, Exception cause) Construct aTranslationStringMissingException
for the specified bundle class, locale and translation key -
Method Summary
Methods inherited from class org.eclipse.jgit.errors.TranslationBundleException
getBundleClass, getLocale
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
key
-
-
Constructor Details
-
TranslationStringMissingException
public TranslationStringMissingException(Class bundleClass, Locale locale, String key, Exception cause) Construct aTranslationStringMissingException
for the specified bundle class, locale and translation key- Parameters:
bundleClass
- the bundle class for which a translation string was missinglocale
- the locale for which a translation string was missingkey
- the key of the missing translation stringcause
- the original exception thrown from theResourceBundle.getString(String)
method.
-
-
Method Details
-
getKey
Get the key of the missing translation string- Returns:
- the key of the missing translation string
-