Package org.eclipse.jgit.errors
Class TranslationBundleException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.eclipse.jgit.errors.TranslationBundleException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
TranslationBundleLoadingException,TranslationStringMissingException
public abstract class TranslationBundleException extends java.lang.RuntimeExceptionCommon base class for all translation bundle related exceptions.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedTranslationBundleException(java.lang.String message, java.lang.Class bundleClass, java.util.Locale locale, java.lang.Exception cause)To construct an instance ofTranslationBundleException
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ClassgetBundleClass()java.util.LocalegetLocale()
-
-
-
Constructor Detail
-
TranslationBundleException
protected TranslationBundleException(java.lang.String message, java.lang.Class bundleClass, java.util.Locale locale, java.lang.Exception cause)To construct an instance ofTranslationBundleException- Parameters:
message- exception messagebundleClass- bundle class for which the exception occurredlocale- locale for which the exception occurredcause- original exception that caused this exception. Usually thrown from theResourceBundleclass.
-
-