Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
13 | 2 | 1 | 0.991 | class_member_declarations[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 10 | 45 | src/NHibernate/UnresolvableObjectException.cs |
2 | 13 | 23 | src/NHibernate/WrongClassException.cs |
| ||||
public UnresolvableObjectException(string message, object identifier, string entityName) : base(message) { this.identifier = identifier; this.entityName = entityName; } public object Identifier { get { return identifier; } } |
| ||||
/// <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="entityName">The name of entity that NHibernate was told to load.</param> public WrongClassException(string message, object identifier, string entityName) : base(message) { this.identifier = identifier; this.entityName = entityName; } /// <summary> /// Gets the identifier of the object that was being loaded. /// </summary> public object Identifier { get { return identifier; } } |
| |||
/// <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="entityName">The name of entity that NHibernate was told to load.</param> public [[#variable284f9de0]](string message, object identifier, string entityName): base(message) { this.identifier = identifier; this.entityName = entityName; } /// <summary> /// Gets the identifier of the object that was being loaded. /// </summary> public object Identifier { get { return identifier; } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#284f9de0]] | WrongClassException |
1 | 2 | [[#284f9de0]] | UnresolvableObjectException |