
icc.ICCProfileException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jj2000 Show documentation
Show all versions of jj2000 Show documentation
Fork of jpeg2k code from https://code.google.com/p/jj2000/.
This is a dependency for support of compression in Grib2 files in netCDF-java and TDS.
We welcome bug fixes and other contributions to this code.
The newest version!
/*****************************************************************************
*
* $Id: ICCProfileException.java,v 1.2 2002/08/08 14:08:13 grosbois Exp $
*
* Copyright Eastman Kodak Company, 343 State Street, Rochester, NY 14650
* $Date $
*****************************************************************************/
package icc;
/**
* This exception is thrown when the content of a profile
* is incorrect.
*
* @see jj2000.j2k.icc.ICCProfile
* @version 1.0
* @author Bruce A. Kern
*/
public class ICCProfileException extends Exception {
/**
* Contruct with message
* @param msg returned by getMessage()
*/
public ICCProfileException (String msg) {
super (msg);
}
/**
* Empty constructor
*/
public ICCProfileException () { }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy