forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPropertyNotFoundException.cs
87 lines (79 loc) · 2.91 KB
/
PropertyNotFoundException.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
using System;
using System.Runtime.Serialization;
namespace NHibernate
{
/// <summary>
/// Indicates that an expected getter or setter method could not be found on a class
/// </summary>
[Serializable]
public class PropertyNotFoundException : MappingException
{
private readonly System.Type targetType;
private readonly string propertyName;
private readonly string accessorType;
/// <summary>
/// Initializes a new instance of the <see cref="PropertyNotFoundException" /> class,
/// used when a property get/set accessor is missing.
/// </summary>
/// <param name="targetType">The <see cref="System.Type" /> that is missing the property</param>
/// <param name="propertyName">The name of the missing property</param>
/// <param name="accessorType">The type of the missing accessor
/// ("getter" or "setter")</param>
public PropertyNotFoundException(System.Type targetType, string propertyName, string accessorType)
: base(String.Format("Could not find a {0} for property '{1}' in class '{2}'",
accessorType, propertyName, targetType
))
{
this.targetType = targetType;
this.propertyName = propertyName;
this.accessorType = accessorType;
}
/// <summary>
/// Initializes a new instance of the <see cref="PropertyNotFoundException" /> class,
/// used when a field is missing.
/// </summary>
/// <param name="targetType">The <see cref="System.Type" /> that is missing the field</param>
/// <param name="propertyName">The name of the missing property</param>
public PropertyNotFoundException(System.Type targetType, string propertyName)
: base(String.Format("Could not find property nor field '{0}' in class '{1}'",
propertyName, targetType))
{
this.targetType = targetType;
this.propertyName = propertyName;
}
public PropertyNotFoundException(string propertyName, string fieldName, System.Type targetType)
: base(String.Format("Could not find the property '{0}', associated to the field '{1}', in class '{2}'", propertyName, fieldName, targetType
))
{
this.targetType = targetType;
this.propertyName = propertyName;
accessorType = fieldName;
}
/// <summary>
/// Initializes a new instance of the <see cref="PropertyNotFoundException"/> class
/// with serialized data.
/// </summary>
/// <param name="info">
/// The <see cref="SerializationInfo"/> that holds the serialized object
/// data about the exception being thrown.
/// </param>
/// <param name="context">
/// The <see cref="StreamingContext"/> that contains contextual information about the source or destination.
/// </param>
protected PropertyNotFoundException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
public System.Type TargetType
{
get { return targetType; }
}
public string PropertyName
{
get { return propertyName; }
}
public string AccessorType
{
get { return accessorType; }
}
}
}