C# Class NHibernate.UnresolvableObjectException

Inheritance: NHibernate.HibernateException
Mostra file Open project: nhibernate/nhibernate-core Class Usage Examples

Public Methods

Method Description
ThrowIfNull ( object o, object id, System clazz ) : void
ThrowIfNull ( object o, object id, string entityName ) : void
UnresolvableObjectException ( object identifier, System clazz ) : System

Initializes a new instance of the UnresolvableObjectException class.

UnresolvableObjectException ( object identifier, string entityName ) : System
UnresolvableObjectException ( string message, object identifier, System clazz ) : System

Initializes a new instance of the UnresolvableObjectException class.

UnresolvableObjectException ( string message, object identifier, string entityName ) : System

Protected Methods

Method Description
UnresolvableObjectException ( SerializationInfo info, StreamingContext context ) : System

Private Methods

Method Description
GetObjectData ( SerializationInfo info, StreamingContext context ) : void

Method Details

ThrowIfNull() public static method

public static ThrowIfNull ( object o, object id, System clazz ) : void
o object
id object
clazz System
return void

ThrowIfNull() public static method

public static ThrowIfNull ( object o, object id, string entityName ) : void
o object
id object
entityName string
return void

UnresolvableObjectException() protected method

protected UnresolvableObjectException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo
context System.Runtime.Serialization.StreamingContext
return System

UnresolvableObjectException() public method

Initializes a new instance of the UnresolvableObjectException class.
public UnresolvableObjectException ( object identifier, System clazz ) : System
identifier object The identifier of the object that caused the exception.
clazz System The of the object attempted to be loaded.
return System

UnresolvableObjectException() public method

public UnresolvableObjectException ( object identifier, string entityName ) : System
identifier object
entityName string
return System

UnresolvableObjectException() public method

Initializes a new instance of the UnresolvableObjectException class.
public UnresolvableObjectException ( string message, object identifier, System clazz ) : System
message string The message that describes the error.
identifier object The identifier of the object that caused the exception.
clazz System The of the object attempted to be loaded.
return System

UnresolvableObjectException() public method

public UnresolvableObjectException ( string message, object identifier, string entityName ) : System
message string
identifier object
entityName string
return System