corrade-vassal – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 vero 1 /// <summary>**************************************************************************
2 ///
3 /// $Id: ICCProfileNotFoundException.java,v 1.1 2002/07/25 14:56:55 grosbois Exp $
4 ///
5 /// Copyright Eastman Kodak Company, 343 State Street, Rochester, NY 14650
6 /// $Date $
7 /// ***************************************************************************
8 /// </summary>
9 using System;
10 namespace CSJ2K.Icc
11 {
12  
13 /// <summary> This exception is thrown when an image contains no icc profile.
14 /// is incorrect.
15 ///
16 /// </summary>
17 /// <seealso cref="jj2000.j2k.icc.ICCProfile">
18 /// </seealso>
19 /// <version> 1.0
20 /// </version>
21 /// <author> Bruce A. Kern
22 /// </author>
23  
24 [Serializable]
25 public class ICCProfileNotFoundException:ICCProfileException
26 {
27  
28 /// <summary> Contruct with message</summary>
29 /// <param name="msg">returned by getMessage()
30 /// </param>
31 internal ICCProfileNotFoundException(System.String msg):base(msg)
32 {
33 }
34  
35  
36 /// <summary> Empty constructor</summary>
37 internal ICCProfileNotFoundException():base("no icc profile in image")
38 {
39 }
40  
41 /* end class ICCProfileNotFoundException */
42 }
43 }