Thrown when Hibernate could not resolve an object by id, especially when loading an association.

Namespace:  NHibernate
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
<SerializableAttribute> _
Public Class UnresolvableObjectException _
	Inherits HibernateException
C#
[SerializableAttribute]
public class UnresolvableObjectException : HibernateException
Visual C++
[SerializableAttribute]
public ref class UnresolvableObjectException : public HibernateException
JavaScript
NHibernate.UnresolvableObjectException = function();

Type.createClass(
	'NHibernate.UnresolvableObjectException',
	NHibernate.HibernateException);

Inheritance Hierarchy

System..::.Object
  System..::.Exception
    System..::.ApplicationException
      NHibernate..::.HibernateException
        NHibernate..::.UnresolvableObjectException
          NHibernate..::.ObjectDeletedException
          NHibernate..::.ObjectNotFoundException

See Also