public class HibernateException extends RuntimeException { public HibernateException(Throwable root) { super(root); } public HibernateException(String string, Throwable root) { super(string, root); } public HibernateException(String s) { super(s);
public class ExecutionException extends RuntimeException { public ExecutionException(String message) { super( message ); } public ExecutionException(Throwable cause) { super( cause ); } public ExecutionException(String message, Throwable cause) { super( message, cause );
Clone fragments detected by clone detection tool
File path: /hibernate-distribution-3.3.2.GA/project/core/src/main/java/org/hibernate/HibernateException.java File path: /hibernate-distribution-3.3.2.GA/project/core/src/main/java/org/hibernate/bytecode/buildtime/ExecutionException.java
Method name: Method name:
Number of AST nodes: 0 Number of AST nodes: 0
1
public class HibernateException extends RuntimeException {
1
public class ExecutionException extends RuntimeException {
2
	public HibernateException(Throwable root) {
2
	public ExecutionException(String message) {
3
		super(root);
3
		super( message );
4
	}
4
	}
5
	public HibernateException(String string, Throwable root) {
5
	public ExecutionException(Throwable cause) {
6
		super(string, root);
6
		super( cause );
7
	}
7
	}
8
	public HibernateException(String s) {
8
	public ExecutionException(String 
9
		super(s
9
message, Throwable cause) {
10
);
10
		super( message, cause );
11
	
11
	
Summary
Number of common nesting structure subtrees0
Number of refactorable cases0
Number of non-refactorable cases0
Time elapsed for finding largest common nesting structure subtrees (ms)0.0
Clones location
Number of node comparisons0