package org.bouncycastle.i18n; import java.io.UnsupportedEncodingException; import java.util.Locale; /* loaded from: classes6.dex */ public class LocaleString extends LocalizedMessage { public String getLocaleString(Locale locale) { return getEntry(null, locale, null); } public LocaleString(String str, String str2, String str3, Object[] objArr) throws NullPointerException, UnsupportedEncodingException { super(str, str2, str3, objArr); } public LocaleString(String str, String str2, String str3) throws NullPointerException, UnsupportedEncodingException { super(str, str2, str3); } public LocaleString(String str, String str2) { super(str, str2); } }