org.freehep.util.io.EncodingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of freehep-io Show documentation
Show all versions of freehep-io Show documentation
FreeHEP extension to the java.io library
// 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