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