/// **************************************************************************
///
/// $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 $
/// ***************************************************************************
///
using System;
namespace CSJ2K.Icc
{
/// This exception is thrown when the content of an an icc profile
/// is in someway incorrect.
///
///
///
///
/// 1.0
///
/// Bruce A. Kern
///
[Serializable]
public class ICCProfileInvalidException:ICCProfileException
{
/// Contruct with message
/// returned by getMessage()
///
internal ICCProfileInvalidException(System.String msg):base(msg)
{
}
/// Empty constructor
internal ICCProfileInvalidException():base("icc profile is invalid")
{
}
/* end class ICCProfileInvalidException */
}
}