CloneSet956


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
15210.988catch_clauses
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
115106
src/NHibernate/Persister/PersisterFactory.cs
215141
src/NHibernate/Persister/PersisterFactory.cs
Clone Instance
1
Line Count
15
Source Line
106
Source File
src/NHibernate/Persister/PersisterFactory.cs

                        catch (TargetInvocationException tie)
                        {
                                Exception e = tie.InnerException;
                                if (e is HibernateException)
                                {
                                        throw e;
                                }
                                else
                                {
                                        throw new MappingException("Could not instantiate persister " + persisterClass.Name, e);
                                }
                        }
                        catch (Exception e)
                        {
                                throw new MappingException("Could not instantiate persister " + persisterClass.Name, e);
                        }


Clone Instance
2
Line Count
15
Source Line
141
Source File
src/NHibernate/Persister/PersisterFactory.cs

                        catch (TargetInvocationException tie)
                        {
                                Exception e = tie.InnerException;
                                if (e is HibernateException)
                                {
                                        throw e;
                                }
                                else
                                {
                                        throw new MappingException("Could not instantiate collection persister " + persisterClass.Name, e);
                                }
                        }
                        catch (Exception e)
                        {
                                throw new MappingException("Could not instantiate collection persister " + persisterClass.Name, e);
                        }


Clone AbstractionParameter Count: 1Parameter Bindings

catch (TargetInvocationException tie)
{
   Exception e = tie.InnerException;
   if (e is HibernateException)
   {
      throw e;
   }
   else
   {
      throw new MappingException( [[#variable5e444940]]+ persisterClass.Name, e);
   }
}
catch (Exception e)
{
   throw new MappingException( [[#variable5e444940]]+ persisterClass.Name, e);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#5e444940]]
"Could not instantiate persister " 
12[[#5e444940]]
"Could not instantiate collection persister "