프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

markus / Rhino.Licensing / LicenseFileNotFoundException.cs @ 1c0c336a

이력 | 보기 | 이력해설 | 다운로드 (1.56 KB)

1 42d49521 taeseongkim
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
}
클립보드 이미지 추가 (최대 크기: 500 MB)