forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnresolvableObjectException.cs
114 lines (99 loc) · 3.21 KB
/
UnresolvableObjectException.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
using System;
using System.Runtime.Serialization;
using System.Security.Permissions;
using NHibernate.Impl;
namespace NHibernate
{
/// <summary>
/// Thrown when Hibernate could not resolve an object by id, especially when
/// loading an association.
/// </summary>
[Serializable]
public class UnresolvableObjectException : HibernateException
{
private readonly object identifier;
private readonly System.Type clazz;
private readonly string entityName;
/// <summary>
/// Initializes a new instance of the <see cref="UnresolvableObjectException"/> class.
/// </summary>
/// <param name="identifier">The identifier of the object that caused the exception.</param>
/// <param name="clazz">The <see cref="System.Type"/> of the object attempted to be loaded.</param>
public UnresolvableObjectException(object identifier, System.Type clazz) :
this("No row with the given identifier exists", identifier, clazz)
{
}
public UnresolvableObjectException(object identifier, string entityName)
:this("No row with the given identifier exists", identifier, entityName) { }
/// <summary>
/// Initializes a new instance of the <see cref="UnresolvableObjectException"/> class.
/// </summary>
/// <param name="message">The message that describes the error.</param>
/// <param name="identifier">The identifier of the object that caused the exception.</param>
/// <param name="clazz">The <see cref="System.Type"/> of the object attempted to be loaded.</param>
public UnresolvableObjectException(string message, object identifier, System.Type clazz)
: base(message)
{
this.identifier = identifier;
this.clazz = clazz;
}
public UnresolvableObjectException(string message, object identifier, string entityName)
: base(message)
{
this.identifier = identifier;
this.entityName = entityName;
}
public object Identifier
{
get { return identifier; }
}
public override string Message
{
get { return base.Message + MessageHelper.InfoString(EntityName, identifier); }
}
public System.Type PersistentClass
{
get { return clazz; }
}
public string EntityName
{
get
{
if (clazz != null) return clazz.FullName;
return entityName;
}
}
public static void ThrowIfNull(object o, object id, System.Type clazz)
{
if (o == null)
{
throw new UnresolvableObjectException(id, clazz);
}
}
public static void ThrowIfNull(object o, object id, string entityName)
{
if (o == null)
{
throw new UnresolvableObjectException(id, entityName);
}
}
#region ISerializable Members
[SecurityPermission(SecurityAction.LinkDemand,
Flags=SecurityPermissionFlag.SerializationFormatter)]
public override void GetObjectData(SerializationInfo info, StreamingContext context)
{
base.GetObjectData(info, context);
info.AddValue("identifier", identifier);
info.AddValue("clazz", clazz);
info.AddValue("entityName", entityName);
}
protected UnresolvableObjectException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
identifier = info.GetValue("identifier", typeof(object));
clazz = info.GetValue("clazz", typeof(System.Type)) as System.Type;
entityName = info.GetString("entityName");
}
#endregion
}
}