/// ************************************************************************** /// /// $Id: ICCProfileNotFoundException.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 an image contains no icc profile. /// is incorrect. /// /// /// /// /// 1.0 /// /// Bruce A. Kern /// [Serializable] public class ICCProfileNotFoundException:ICCProfileException { /// Contruct with message /// returned by getMessage() /// internal ICCProfileNotFoundException(System.String msg):base(msg) { } /// Empty constructor internal ICCProfileNotFoundException():base("no icc profile in image") { } /* end class ICCProfileNotFoundException */ } }