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
public class TranslationStringMissingException extends TranslationBundleException
This exception will be thrown when a translation string for a translation bundle and locale is missing.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TranslationStringMissingException(Class bundleClass, Locale locale, String key, Exception cause)
Construct aTranslationStringMissingException
for the specified bundle class, locale and translation key
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getKey()
Get the key of the missing translation string-
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
-
-
-
-
Constructor Detail
-
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 Detail
-
getKey
public String getKey()
Get the key of the missing translation string- Returns:
- the key of the missing translation string
-
-