CloneSet1142


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
8210.993catch_clauses
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
18257
src/NHibernate/Persister/Entity/SingleTableEntityPersister.cs
28347
src/NHibernate/Persister/Entity/SingleTableEntityPersister.cs
Clone Instance
1
Line Count
8
Source Line
257
Source File
src/NHibernate/Persister/Entity/SingleTableEntityPersister.cs

                                        catch (InvalidCastException cce)
                                        {
                                                throw new MappingException(
                                                        string.Format("Illegal discriminator type: {0} of entity {1}", discriminatorType.Name, persistentClass.EntityName), cce);
                                        }
                                        catch (Exception e)
                                        {
                                                throw new MappingException("Could not format discriminator value to SQL string of entity " + persistentClass.EntityName, e);
                                        }


Clone Instance
2
Line Count
8
Source Line
347
Source File
src/NHibernate/Persister/Entity/SingleTableEntityPersister.cs

                                                catch (InvalidCastException cce)
                                                {
                                                        throw new MappingException(
                                                                string.Format("Illegal discriminator type: {0} of entity {1}", discriminatorType.Name, persistentClass.EntityName), cce);
                                                }
                                                catch (Exception e)
                                                {
                                                        throw new MappingException("Error parsing discriminator value of entity " + persistentClass.EntityName, e);
                                                }


Clone AbstractionParameter Count: 1Parameter Bindings

catch (InvalidCastException cce)
{
   throw new MappingException(string.Format("Illegal discriminator type: {0} of entity {1}", discriminatorType.Name, persistentClass.EntityName), cce);
}
catch (Exception e)
{
   throw new MappingException( [[#variable6633df60]]+ persistentClass.EntityName, e);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#6633df60]]
"Could not format discriminator value to SQL string of entity " 
12[[#6633df60]]
"Error parsing discriminator value of entity "