what-the-bank/sources/org/bouncycastle/i18n/LocaleString.java

24 lines
723 B
Java

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);
}
}