forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPropertyValueException.cs
88 lines (79 loc) · 2.73 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
using System;
using System.Runtime.Serialization;
using System.Security.Permissions;
using NHibernate.Util;
namespace NHibernate
{
[Serializable]
public class PropertyValueException : HibernateException
{
private readonly System.Type persistentClass;
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="persistentClass">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, System.Type persistentClass, string propertyName)
: base(message)
{
this.persistentClass = persistentClass;
this.propertyName = propertyName;
}
public System.Type PersistentClass
{
get { return persistentClass; }
}
public string PropertyName
{
get { return propertyName; }
}
public override string Message
{
get
{
return base.Message +
StringHelper.Qualify(persistentClass.FullName, 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)
{
persistentClass = info.GetValue("persistentClass", typeof(System.Type)) as System.Type;
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("persistentClass", persistentClass);
info.AddValue("propertyName", propertyName);
}
#endregion
}
}