01: /*
02: * Copyright © World Wide Web Consortium, (Massachusetts Institute of Technology,
03: * Institut National de Recherche en Informatique et en Automatique, Keio University).
04: * All Rights Reserved. http://www.w3.org/Consortium/Legal/
05: */
06: package org.w3c.tools.codec;
07:
08: /**
09: * Exception for invalid BASE64 streams.
10: */
11: public class Base64FormatException extends Exception {
12:
13: /**
14: * Create that kind of exception
15: * @param msg The associated error message
16: */
17: public Base64FormatException(String msg) {
18: super(msg);
19: }
20:
21: }
|