KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > common > util > Base64Exception


1 package org.objectweb.celtix.common.util;
2
3 import org.objectweb.celtix.common.i18n.Exception;
4 import org.objectweb.celtix.common.i18n.Message;
5
6 public class Base64Exception extends Exception JavaDoc {
7
8     public Base64Exception(Message msg) {
9         super(msg);
10         // TODO Auto-generated constructor stub
11
}
12
13     public Base64Exception(Message msg, Throwable JavaDoc t) {
14         super(msg, t);
15         // TODO Auto-generated constructor stub
16
}
17
18     public Base64Exception(Throwable JavaDoc cause) {
19         super(cause);
20         // TODO Auto-generated constructor stub
21
}
22
23
24 }
25
Popular Tags