KickJava   Java API By Example, From Geeks To Geeks.

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


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