summaryrefslogtreecommitdiffstats
path: root/base/ocsp
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2015-01-20 09:25:32 -0500
committerEndi S. Dewata <edewata@redhat.com>2015-01-21 15:34:58 -0500
commitdeb188bffd38f82396c47411381a875020ca748b (patch)
treee31bd0679f3a87135e3f33825630ad5546e84d57 /base/ocsp
parent82e0e34e350929b2139f7c0a20c0c3a00d7fcf92 (diff)
downloadpki-deb188bffd38f82396c47411381a875020ca748b.tar.gz
pki-deb188bffd38f82396c47411381a875020ca748b.tar.xz
pki-deb188bffd38f82396c47411381a875020ca748b.zip
Removed unnecessary EBaseException constructor.
The EBaseException(String msgFormat, String param) constructor has been removed because it's only used once and can be substituted with another constructor. All subclasses of EBaseException have been updated accordingly. https://fedorahosted.org/pki/ticket/915
Diffstat (limited to 'base/ocsp')
-rw-r--r--base/ocsp/src/com/netscape/ocsp/EOCSPException.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/base/ocsp/src/com/netscape/ocsp/EOCSPException.java b/base/ocsp/src/com/netscape/ocsp/EOCSPException.java
index 1c878ad75..30574891f 100644
--- a/base/ocsp/src/com/netscape/ocsp/EOCSPException.java
+++ b/base/ocsp/src/com/netscape/ocsp/EOCSPException.java
@@ -48,14 +48,6 @@ public class EOCSPException extends EBaseException {
* Constructs a OCSP exception.
* <P>
*/
- public EOCSPException(String msgFormat, String param) {
- super(msgFormat, param);
- }
-
- /**
- * Constructs a OCSP exception.
- * <P>
- */
public EOCSPException(String msgFormat, Exception e) {
super(msgFormat, e);
}