forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWrongClassException.cs
97 lines (88 loc) · 3.13 KB
/
WrongClassException.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;
namespace NHibernate
{
/// <summary>
/// Thrown when <c>ISession.Load()</c> selects a row with the given primary key (identifier value)
/// but the row's discriminator value specifies a different subclass from the one requested
/// </summary>
[Serializable]
public class WrongClassException : HibernateException, ISerializable
{
private object identifier;
private System.Type type;
/// <summary>
/// Initializes a new instance of the <see cref="WrongClassException"/> class.
/// </summary>
/// <param name="message">The message that describes the error. </param>
/// <param name="identifier">The identifier of the object that was being loaded.</param>
/// <param name="type">The <see cref="System.Type"/> that NHibernate was told to load.</param>
public WrongClassException( string message, object identifier, System.Type type ) : base( message )
{
this.identifier = identifier;
this.type = type;
}
/// <summary>
/// Gets the identifier of the object that was being loaded.
/// </summary>
public object Identifier
{
get { return identifier; }
}
/// <summary>
/// Gets the <see cref="System.Type"/> that NHibernate was told to load.
/// </summary>
public System.Type Type
{
get { return type; }
}
/// <summary>
/// Gets a message that describes the current <see cref="WrongClassException"/>.
/// </summary>
/// <value>The error message that explains the reason for this exception.</value>
public override string Message
{
get
{
return "Object with id: " + identifier
+ " was not of the specified sublcass: " + type.FullName
+ " (" + base.Message + ")";
}
}
#region ISerializable Members
/// <summary>
/// Initializes a new instance of the <see cref="WrongClassException"/> 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 WrongClassException( SerializationInfo info, StreamingContext context ) : base( info, context )
{
type = info.GetValue( "type", typeof(System.Type) ) as System.Type;
identifier = info.GetValue( "identifier", typeof(object) ) ;
}
/// <summary>
/// Sets the serialization info for <see cref="WrongClassException"/> 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>
public override void GetObjectData(SerializationInfo info, StreamingContext context)
{
base.GetObjectData( info, context );
info.AddValue( "type", type, typeof(System.Type) );
info.AddValue( "identifier", identifier, typeof(object) );
}
#endregion
}
}