forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPropertyValueException.cs
97 lines (85 loc) · 2.86 KB
/
PropertyValueException.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
88
89
90
91
92
93
94
95
96
97
using System;
using System.Runtime.Serialization;
using System.Security.Permissions;
using NHibernate.Util;
namespace NHibernate
{
[Serializable]
public class PropertyValueException : HibernateException
{
private readonly string entityName;
private readonly string propertyName;
/// <summary>
/// Initializes a new instance of the <see cref="PropertyValueException"/> class.
/// </summary>
/// <param name="message">The message that describes the error. </param>
/// <param name="entityName">The <see cref="System.Type"/> that NHibernate was trying to access.</param>
/// <param name="propertyName">The name of the Property that was being get/set.</param>
public PropertyValueException(string message, string entityName, string propertyName)
: base(message)
{
this.entityName = entityName;
this.propertyName = propertyName;
}
public PropertyValueException(string message, string entityName, string propertyName, Exception innerException)
: base(message, innerException)
{
this.entityName = entityName;
this.propertyName = propertyName;
}
public string EntityName
{
get { return entityName; }
}
public string PropertyName
{
get { return propertyName; }
}
public override string Message
{
get
{
return base.Message + " " +
StringHelper.Qualify(entityName, propertyName);
}
}
#region Serialization
/// <summary>
/// Initializes a new instance of the <see cref="PropertyValueException"/> 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 PropertyValueException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
entityName = info.GetValue("entityName", typeof(string)) as string;
propertyName = info.GetString("propertyName");
}
/// <summary>
/// Sets the serialization info for <see cref="PropertyValueException"/> after
/// getting the info from the base Exception.
/// </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>
[SecurityPermission(SecurityAction.LinkDemand,
Flags = SecurityPermissionFlag.SerializationFormatter)]
public override void GetObjectData(SerializationInfo info, StreamingContext context)
{
base.GetObjectData(info, context);
info.AddValue("entityName", entityName);
info.AddValue("propertyName", propertyName);
}
#endregion
}
}