public class TypeMismatchException extends HibernateException {
public TypeMismatchException(Throwable root) {
super( root );
}
public TypeMismatchException(String s) {
super( s );
}
public TypeMismatchException(String string, Throwable root) {
super( string, root )
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/TypeMismatchException.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 TypeMismatchException extends HibernateException {
↵ | | 1 | public class ExecutionException extends RuntimeException {↵
|
2 | public TypeMismatchException(Throwable root) {
↵ | | 2 | public ExecutionException(String message) {↵
|
3 | super( root );
↵ | | 3 | super( message );↵
|
4 | }↵ | | 4 | }↵
|
5 |
↵ | | |
|
|
6 | public TypeMismatchException(String s) {
↵ | | 5 | public ExecutionException(Throwable cause) {↵
|
7 | super( s );
↵ | | 6 | super( cause );↵
|
8 | }↵ | | 7 | }↵
|
9 |
↵ | | |
|
|
10 | public TypeMismatchException(String string, Throwable root) {
↵ | | 8 | public ExecutionException(String message, Throwable cause) {↵
|
11 | super( string, root ) | | 9 | super( message, cause )
|
See real code fragment |
|
See real code fragment |
Summary
Number of common nesting structure subtrees | 0 |
Number of refactorable cases | 0 |
Number of non-refactorable cases | 0 |
Time elapsed for finding largest common nesting structure subtrees (ms) | 0.0 |
Clones location | |
Number of node comparisons | 0 |