35 lines
1.1 KiB
Java
35 lines
1.1 KiB
Java
package org.bouncycastle.i18n;
|
|
|
|
import java.io.UnsupportedEncodingException;
|
|
import java.util.Locale;
|
|
import java.util.TimeZone;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public class TextBundle extends LocalizedMessage {
|
|
public static final String TEXT_ENTRY = "text";
|
|
|
|
public String getText(Locale locale, TimeZone timeZone) throws MissingEntryException {
|
|
return getEntry("text", locale, timeZone);
|
|
}
|
|
|
|
public String getText(Locale locale) throws MissingEntryException {
|
|
return getEntry("text", locale, TimeZone.getDefault());
|
|
}
|
|
|
|
public TextBundle(String str, String str2, Object[] objArr) throws NullPointerException {
|
|
super(str, str2, objArr);
|
|
}
|
|
|
|
public TextBundle(String str, String str2, String str3, Object[] objArr) throws NullPointerException, UnsupportedEncodingException {
|
|
super(str, str2, str3, objArr);
|
|
}
|
|
|
|
public TextBundle(String str, String str2, String str3) throws NullPointerException, UnsupportedEncodingException {
|
|
super(str, str2, str3);
|
|
}
|
|
|
|
public TextBundle(String str, String str2) throws NullPointerException {
|
|
super(str, str2);
|
|
}
|
|
}
|