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

org.jflac.FrameDecodeException Maven / Gradle / Ivy

There is a newer version: 1.5.2
Show newest version
/*
 * Created on Jun 30, 2004
 *
 * To change the template for this generated file go to
 * Window - Preferences - Java - Code Generation - Code and Comments
 */
package org.jflac;


/**
 * @author kc7bfi
 *
 * To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Generation - Code and Comments
 */
public class FrameDecodeException extends Exception {

    /**
     * Constructor.
     */
    public FrameDecodeException() {
        super();
    }

    /**
     * Constructor.
     * @param msg Error message
     */
    public FrameDecodeException(String msg) {
        super(msg);
    }

    /**
     * Constructor.
     * @param err The causing error
     */
    public FrameDecodeException(Throwable err) {
        super(err);
    }

    /**
     * Constructor.
     * @param msg The error message
     * @param err The causing error
     */
    public FrameDecodeException(String msg, Throwable err) {
        super(msg, err);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy