01: package org.objectweb.celtix.common.util;
02:
03: import org.objectweb.celtix.common.i18n.Exception;
04: import org.objectweb.celtix.common.i18n.Message;
05:
06: public class Base64Exception extends Exception {
07:
08: public Base64Exception(Message msg) {
09: super (msg);
10: // TODO Auto-generated constructor stub
11: }
12:
13: public Base64Exception(Message msg, Throwable t) {
14: super (msg, t);
15: // TODO Auto-generated constructor stub
16: }
17:
18: public Base64Exception(Throwable cause) {
19: super (cause);
20: // TODO Auto-generated constructor stub
21: }
22:
23: }
|