KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jsmtpd > tools > rights > RightException


1 package org.jsmtpd.tools.rights;
2
3 public class RightException extends Exception JavaDoc {
4
5     public RightException() {
6         super();
7     }
8
9     public RightException(String JavaDoc message, Throwable JavaDoc cause) {
10         super(message, cause);
11     }
12
13     public RightException(String JavaDoc message) {
14         super(message);
15     }
16
17     public RightException(Throwable JavaDoc cause) {
18         super(cause);
19     }
20
21 }
22
Popular Tags