/// ************************************************************************** /// /// $Id: MatrixBasedTransformException.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 { /// Thrown by MatrixBasedTransformTosRGB /// /// /// /// /// 1.0 /// /// Bruce A. Kern /// [Serializable] public class MatrixBasedTransformException:System.Exception { /// Contruct with message /// returned by getMessage() /// internal MatrixBasedTransformException(System.String msg):base(msg) { } /// Empty constructor internal MatrixBasedTransformException() { } /* end class MatrixBasedTransformException */ } }