Package org.eclipse.jgit.errors
Class TranslationBundleLoadingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.eclipse.jgit.errors.TranslationBundleException
org.eclipse.jgit.errors.TranslationBundleLoadingException
- All Implemented Interfaces:
Serializable
This exception will be thrown when a translation bundle loading
fails.
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionTranslationBundleLoadingException
(Class bundleClass, Locale locale, Exception cause) Construct aTranslationBundleLoadingException
for the specified bundle class and locale. -
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:
-
-
Constructor Details
-
TranslationBundleLoadingException
Construct aTranslationBundleLoadingException
for the specified bundle class and locale.- Parameters:
bundleClass
- the bundle class for which the loading failedlocale
- the locale for which the loading failedcause
- the original exception thrown from theResourceBundle.getBundle(String, Locale)
method.
-