fix build

This commit is contained in:
zzz
2018-06-19 11:32:19 +00:00
parent 03d430ba7c
commit 4cd9fe725d

View File

@@ -598,5 +598,9 @@ public class DHSessionKeyBuilder {
public InvalidPublicParameterException(String msg) { public InvalidPublicParameterException(String msg) {
super(msg); super(msg);
} }
/** @since 0.9.35 */
public InvalidPublicParameterException(String msg, Throwable t) {
super(msg, t);
}
} }
} }