markus / MarkusAutoUpdate / src / NetSparkle / NetSparkleException.cs @ 8e3d58f3
이력 | 보기 | 이력해설 | 다운로드 (830 Bytes)
1 | d8f5045e | taeseongkim | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.Text; |
||
5 | using System.Runtime.Serialization; |
||
6 | |||
7 | namespace NetSparkleUpdater |
||
8 | { |
||
9 | /// <summary> |
||
10 | /// A NetSparkle exception |
||
11 | /// </summary> |
||
12 | [Serializable] |
||
13 | public class NetSparkleException : Exception |
||
14 | { |
||
15 | /// <summary> |
||
16 | /// Constructor |
||
17 | /// </summary> |
||
18 | /// <param name="message">exception message</param> |
||
19 | public NetSparkleException(string message) : base(message) |
||
20 | { |
||
21 | } |
||
22 | |||
23 | /// <summary> |
||
24 | /// Constructor |
||
25 | /// </summary> |
||
26 | /// <param name="info">serialization info</param> |
||
27 | /// <param name="context">the context</param> |
||
28 | protected NetSparkleException(SerializationInfo info, StreamingContext context): base(info, context) |
||
29 | { |
||
30 | } |
||
31 | } |
||
32 | } |