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

org.freehep.util.io.EncodingException Maven / Gradle / Ivy

There is a newer version: 2.2.2
Show newest version
// Copyright 2001, FreeHEP.
package org.freehep.util.io;

import java.io.IOException;

/**
 * Encoding Exception for any of the encoding streams.
 * 
 * @author Mark Donszelmann
 * @version $Id: src/main/java/org/freehep/util/io/EncodingException.java
 *          96b41b903496 2005/11/21 19:50:18 duns $
 */
public class EncodingException extends IOException {

	/**
     * 
     */
	private static final long serialVersionUID = 8496816190751796701L;

	/**
	 * Creates an Encoding Exception
	 * 
	 * @param msg
	 *            message
	 */
	public EncodingException(String msg) {
		super(msg);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy