Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Hook <dgh@cryptoworkshop.com>2013-08-30 12:04:23 +0400
committerDavid Hook <dgh@cryptoworkshop.com>2013-08-30 12:04:23 +0400
commit9c25ba42b8f25ece8731194e59729dd702b6c152 (patch)
tree09e271b5d87b0b721f86b23066486e91e12bbc6d /core/src/main/java/org/bouncycastle/i18n
parent3189df34723971c361aeec8b831cfda0bd9fab31 (diff)
added missing constructor.
Diffstat (limited to 'core/src/main/java/org/bouncycastle/i18n')
-rw-r--r--core/src/main/java/org/bouncycastle/i18n/LocaleString.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/src/main/java/org/bouncycastle/i18n/LocaleString.java b/core/src/main/java/org/bouncycastle/i18n/LocaleString.java
index b9e22320..ab898a9e 100644
--- a/core/src/main/java/org/bouncycastle/i18n/LocaleString.java
+++ b/core/src/main/java/org/bouncycastle/i18n/LocaleString.java
@@ -15,6 +15,12 @@ public class LocaleString extends LocalizedMessage
{
super(resource, id, encoding);
}
+
+ public LocaleString(String resource, String id, String encoding, Object[] arguments)
+ throws NullPointerException, UnsupportedEncodingException
+ {
+ super(resource, id, encoding, arguments);
+ }
public String getLocaleString(Locale locale)
{