diff options
Diffstat (limited to 'base/common/src/com')
| -rw-r--r-- | base/common/src/com/netscape/certsrv/client/PKIClient.java | 3 | ||||
| -rw-r--r-- | base/common/src/com/netscape/certsrv/client/PKIConnection.java | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/base/common/src/com/netscape/certsrv/client/PKIClient.java b/base/common/src/com/netscape/certsrv/client/PKIClient.java index 3bfc8080b..65a1b93ea 100644 --- a/base/common/src/com/netscape/certsrv/client/PKIClient.java +++ b/base/common/src/com/netscape/certsrv/client/PKIClient.java @@ -1,6 +1,5 @@ package com.netscape.certsrv.client; -import java.io.File; import java.io.IOException; import java.net.URI; import java.net.URISyntaxException; @@ -37,8 +36,6 @@ public class PKIClient { public ClientConfig config; public PKIConnection connection; - public File certDatabase; - public boolean verbose; public PKIClient(ClientConfig config) { diff --git a/base/common/src/com/netscape/certsrv/client/PKIConnection.java b/base/common/src/com/netscape/certsrv/client/PKIConnection.java index d057deba0..cf103a9f8 100644 --- a/base/common/src/com/netscape/certsrv/client/PKIConnection.java +++ b/base/common/src/com/netscape/certsrv/client/PKIConnection.java @@ -454,7 +454,7 @@ public class PKIConnection { CryptoManager.getInstance(); } catch (NotInitializedException e) { - throw new IOException(e); + throw new IOException("Certificate database not initialized.", e); } String hostName = null; |
