
colorspace.ColorSpaceException 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: ColorSpaceException.java,v 1.1 2002/07/25 14:52:00 grosbois Exp $
*
* Copyright Eastman Kodak Company, 343 State Street, Rochester, NY 14650
* $Date $
*****************************************************************************/
package colorspace;
/**
* This exception is thrown when the content of an
* image contains an incorrect colorspace box
*
* @see jj2000.j2k.colorspace.ColorSpaceMapper
* @version 1.0
* @author Bruce A. Kern
*/
public class ColorSpaceException extends Exception {
/**
* Contruct with message
* @param msg returned by getMessage()
*/
public ColorSpaceException (String msg) {
super (msg); }
/**
* Empty constructor
*/
public ColorSpaceException () {
}
/* end class ColorSpaceException */ }
© 2015 - 2025 Weber Informatics LLC | Privacy Policy