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 CacheException extends HibernateException {
public CacheException(String s) {
super(s);
}
public CacheException(String s, Throwable e) {
super(s, e);
}
public CacheException(Throwable e) {
super(e);
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/cache/CacheException.java
|
Method name:
|
|
Method name:
|
Number of AST nodes: 0
|
|
Number of AST nodes: 0
|
|
1 | public class HibernateException extends RuntimeException {↵ | | 1 | public class CacheException extends HibernateException {↵
|
| | | 2 | ↵
|
2 | public HibernateException(Throwable root) {↵ | | 3 | public CacheException(String s) {↵
|
3 | super(root);↵ | | 4 | super(s);↵
|
4 | }↵ | | 5 | }↵
|
|
5 | public HibernateException(String string, Throwable root) {↵ | | 6 | public CacheException(String s, Throwable e) {↵
|
6 | super(string, root);↵ | | 7 | super(s, e);↵
|
7 | }↵ | | 8 | }↵
|
| | | 9 | ↵
|
8 | public HibernateException(String s) {↵ | | 10 | public CacheException(Throwable e) {↵
|
9 | super(s);↵ | | 11 | super(e);↵
|
10 | | | 12 |
|
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 |