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

icc.ICCProfileInvalidException Maven / Gradle / Ivy

Go to download

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: ICCProfileInvalidException.java,v 1.1 2002/07/25 14:56:55 grosbois Exp $
 *
 * Copyright Eastman Kodak Company, 343 State Street, Rochester, NY 14650
 * $Date $
 *****************************************************************************/

package icc;

/**
 * This exception is thrown when the content of an an icc profile 
 * is in someway incorrect.
 * 
 * @see		jj2000.j2k.icc.ICCProfile
 * @version	1.0
 * @author	Bruce A. Kern
 */

public class ICCProfileInvalidException extends ICCProfileException {

    /**
     * Contruct with message
     *   @param msg returned by getMessage()
     */
    ICCProfileInvalidException (String msg) {
        super (msg); }


    /**
     * Empty constructor
     */
    ICCProfileInvalidException () {
        super ("icc profile is invalid"); }
    
    /* end class ICCProfileInvalidException */ }








© 2015 - 2025 Weber Informatics LLC | Privacy Policy