1 /*2 * Copyright © World Wide Web Consortium, (Massachusetts Institute of Technology, 3 * Institut National de Recherche en Informatique et en Automatique, Keio University).4 * All Rights Reserved. http://www.w3.org/Consortium/Legal/5 */6 package org.w3c.tools.codec;7 8 /**9 * Exception for invalid BASE64 streams.10 */11 public class Base64FormatException extends Exception 12 {13 14 /**15 * Create that kind of exception16 * @param msg The associated error message 17 */18 public Base64FormatException(String msg)19 {20 super(msg);21 }22 23 }24