/// ************************************************************************** /// /// $Id: ColorSpaceException.java,v 1.1 2002/07/25 14:52:00 grosbois Exp $ /// /// Copyright Eastman Kodak Company, 343 State Street, Rochester, NY 14650 /// $Date $ /// *************************************************************************** /// using System; namespace CSJ2K.Color { /// This exception is thrown when the content of an /// image contains an incorrect colorspace box /// /// /// /// /// 1.0 /// /// Bruce A. Kern /// public class ColorSpaceException:System.Exception { /// Contruct with message /// returned by getMessage() /// public ColorSpaceException(System.String msg):base(msg) { } /// Empty constructor public ColorSpaceException() { } /* end class ColorSpaceException */ } }