All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.w3c.tools.codec.Base64FormatException Maven / Gradle / Ivy

There is a newer version: 6.21.3
Show newest version
/*
 * Copyright � World Wide Web Consortium, (Massachusetts Institute of Technology, 
 * Institut National de Recherche en Informatique et en Automatique, Keio University).
 * All Rights Reserved. http://www.w3.org/Consortium/Legal/
 */
package org.w3c.tools.codec;

/**
 * Exception for invalid BASE64 streams.
 */
@SuppressWarnings("serial")
public class Base64FormatException extends Exception
{

	/**
	 * Create that kind of exception
	 * @param msg The associated error message 
	 */
	public Base64FormatException(String msg)
	{
		super(msg);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy