NonUniqueObjectException.cs :  » Persistence-Frameworks » NHibernate » NHibernate » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Persistence Frameworks » NHibernate 
NHibernate » NHibernate » NonUniqueObjectException.cs
using System;
using System.Runtime.Serialization;
using System.Security.Permissions;

namespace NHibernate{
  /// <summary>
  /// This exception is thrown when an operation would
  /// break session-scoped identity. This occurs if the
  /// user tries to associate two different instances of
  /// the same class with a particular identifier,
  /// in the scope of a single <see cref="ISession"/>.
  /// </summary>
  [Serializable]
  public class NonUniqueObjectException : HibernateException
  {
    private readonly object identifier;
    private readonly string entityName;

    /// <summary>
    /// Initializes a new instance of the <see cref="NonUniqueObjectException"/> class.
    /// </summary>
    /// <param name="message">The message that describes the error. </param>
    /// <param name="id">The identifier of the object that caused the exception.</param>
    /// <param name="entityName">The EntityName of the object attempted to be loaded.</param>
    public NonUniqueObjectException(String message, object id, string entityName)
      : base(message)
    {
      this.entityName = entityName;
      identifier = id;
    }

    /// <summary>
    /// Initializes a new instance of the <see cref="NonUniqueObjectException"/> class.
    /// </summary>
    /// <param name="id">The identifier of the object that caused the exception.</param>
    /// <param name="entityName">The EntityName of the object attempted to be loaded.</param>
    public NonUniqueObjectException(object id, string entityName)
      : this("a different object with the same identifier value was already associated with the session", id, entityName)
    {
    }

    public object Identifier
    {
      get { return identifier; }
    }

    public override string Message
    {
      get { return base.Message + ": " + identifier + ", of entity: " + entityName; }
    }

    public string EntityName
    {
      get { return entityName; }
    }

    #region ISerializable Members

    /// <summary>
    /// Initializes a new instance of the <see cref="NonUniqueObjectException"/> class.
    /// </summary>
    protected NonUniqueObjectException(SerializationInfo info, StreamingContext context)
      : base(info, context)
    {
      identifier = info.GetValue("identifier", typeof(Object));
      entityName = info.GetValue("entityName", typeof(string)) as string;
    }

    /// <summary>
    /// Sets the serialization info for <see cref="InstantiationException"/> 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("identifier", identifier, typeof(Object));
      info.AddValue("entityName", entityName, typeof(string));
    }

    #endregion
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.