// JpegException.java
// $Id: JpegException.java,v 1.2 2000/08/16 21:37:50 ylafon Exp $
// (c) COPYRIGHT MIT, INRIA and Keio, 1999.
// Please first read the full copyright statement in file COPYRIGHT.html

package org.w3c.tools.jpeg;

/**
 * @version $Revision: 1.2 $
 * @author  Benoît Mahé (bmahe@w3.org)
 */
public class JpegException extends Exception {

    public JpegException(String msg) {
	super(msg);
    }

}
