KickJava   Java API By Example, From Geeks To Geeks.

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


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