01: // Base64FormatException.java
02: // $Id: Base64FormatException.java,v 1.4 2000/08/16 21:37:48 ylafon Exp $
03: // (c) COPYRIGHT MIT and INRIA, 1996.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.tools.codec;
07:
08: /**
09: * Exception for invalid BASE64 streams.
10: */
11:
12: public class Base64FormatException extends Exception {
13:
14: /**
15: * Create that kind of exception
16: * @param msg The associated error message
17: */
18:
19: public Base64FormatException(String msg) {
20: super(msg);
21: }
22:
23: }
|