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