/// ************************************************************************** /// /// $Id: MonochromeTransformException.java,v 1.1 2002/07/25 14:56:49 grosbois Exp $ /// /// Copyright Eastman Kodak Company, 343 State Street, Rochester, NY 14650 /// $Date $ /// *************************************************************************** /// using System; namespace CSJ2K.Icc.Lut { /// Exception thrown by MonochromeTransformTosRGB. /// /// /// /// /// 1.0 /// /// Bruce A. Kern /// [Serializable] public class MonochromeTransformException:System.Exception { /// Contruct with message /// returned by getMessage() /// internal MonochromeTransformException(System.String msg):base(msg) { } /// Empty constructor internal MonochromeTransformException() { } /* end class MonochromeTransformException */ } }