KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sslexplorer > security > PrivateKeyNotInitializedException


1 package com.sslexplorer.security;
2
3 public class PrivateKeyNotInitializedException extends Exception JavaDoc {
4
5     public PrivateKeyNotInitializedException() {
6         super();
7         // TODO Auto-generated constructor stub
8
}
9
10     public PrivateKeyNotInitializedException(String JavaDoc message) {
11         super(message);
12         // TODO Auto-generated constructor stub
13
}
14
15     public PrivateKeyNotInitializedException(String JavaDoc message, Throwable JavaDoc cause) {
16         super(message, cause);
17         // TODO Auto-generated constructor stub
18
}
19
20     public PrivateKeyNotInitializedException(Throwable JavaDoc cause) {
21         super(cause);
22         // TODO Auto-generated constructor stub
23
}
24
25 }
26
Popular Tags