corrade-vassal – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 vero 1 /// <summary>**************************************************************************
2 ///
3 /// $Id: ICCProfileException.java,v 1.2 2002/08/08 14:08:13 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 the content of a 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 [Serializable]
24 public class ICCProfileException:System.Exception
25 {
26  
27 /// <summary> Contruct with message</summary>
28 /// <param name="msg">returned by getMessage()
29 /// </param>
30 public ICCProfileException(System.String msg):base(msg)
31 {
32 }
33  
34  
35 /// <summary> Empty constructor</summary>
36 public ICCProfileException()
37 {
38 }
39 }
40 }