corrade-vassal – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | vero | 1 | /// <summary>************************************************************************** |
2 | /// |
||
3 | /// $Id: MonochromeTransformException.java,v 1.1 2002/07/25 14:56:49 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.Lut |
||
11 | { |
||
12 | |||
13 | /// <summary> Exception thrown by MonochromeTransformTosRGB. |
||
14 | /// |
||
15 | /// </summary> |
||
16 | /// <seealso cref="jj2000.j2k.icc.lut.MonochromeTransformTosRGB"> |
||
17 | /// </seealso> |
||
18 | /// <version> 1.0 |
||
19 | /// </version> |
||
20 | /// <author> Bruce A. Kern |
||
21 | /// </author> |
||
22 | |||
23 | [Serializable] |
||
24 | public class MonochromeTransformException:System.Exception |
||
25 | { |
||
26 | |||
27 | /// <summary> Contruct with message</summary> |
||
28 | /// <param name="msg">returned by getMessage() |
||
29 | /// </param> |
||
30 | internal MonochromeTransformException(System.String msg):base(msg) |
||
31 | { |
||
32 | } |
||
33 | |||
34 | /// <summary> Empty constructor</summary> |
||
35 | internal MonochromeTransformException() |
||
36 | { |
||
37 | } |
||
38 | |||
39 | /* end class MonochromeTransformException */ |
||
40 | } |
||
41 | } |