markus / Rhino.Licensing / LicenseFileNotFoundException.cs @ 1c0c336a
이력 | 보기 | 이력해설 | 다운로드 (1.56 KB)
1 |
using System; |
---|---|
2 |
using System.Runtime.Serialization; |
3 |
|
4 |
namespace Rhino.Licensing |
5 |
{ |
6 |
/// <summary> |
7 |
/// Thrown when a valid license file can not be |
8 |
/// found on the client machine. |
9 |
/// </summary> |
10 |
[Serializable] |
11 |
public class LicenseFileNotFoundException : RhinoLicensingException |
12 |
{ |
13 |
/// <summary> |
14 |
/// Creates a new instance of <seealso cref="LicenseFileNotFoundException"/> |
15 |
/// </summary> |
16 |
public LicenseFileNotFoundException() |
17 |
{ |
18 |
} |
19 |
|
20 |
/// <summary> |
21 |
/// Creates a new instance of <seealso cref="LicenseFileNotFoundException"/> |
22 |
/// </summary> |
23 |
/// <param name="message">error message</param> |
24 |
public LicenseFileNotFoundException(string message) |
25 |
: base(message) |
26 |
{ |
27 |
} |
28 |
|
29 |
/// <summary> |
30 |
/// Creates a new instance of <seealso cref="LicenseFileNotFoundException"/> |
31 |
/// </summary> |
32 |
/// <param name="message">error message</param> |
33 |
/// <param name="inner">inner exception</param> |
34 |
public LicenseFileNotFoundException(string message, Exception inner) |
35 |
: base(message, inner) |
36 |
{ |
37 |
} |
38 |
|
39 |
/// <summary> |
40 |
/// Creates a new instance of <seealso cref="LicenseFileNotFoundException"/> |
41 |
/// </summary> |
42 |
/// <param name="info">serialization information</param> |
43 |
/// <param name="context">streaming context</param> |
44 |
protected LicenseFileNotFoundException( |
45 |
SerializationInfo info, |
46 |
StreamingContext context) : base(info, context) |
47 |
{ |
48 |
} |
49 |
} |
50 |
} |