public class BaseRuntimeException extends RuntimeException {
public BaseRuntimeException() {
super();
}
public BaseRuntimeException(String message) {
super(message);
}
public BaseRuntimeException(String message, Throwable cause) {
super(message, cause);
}
public BaseRuntimeException(Throwable cause) {
super(cause)
public class FolderInconsistentException extends Exception {
/**
* Constructs the FolderInconsistentException.java.
*
*
*/
public FolderInconsistentException() {
super();
}
/**
* Constructs the FolderInconsistentException.java.
*
* @param arg0
*/
public FolderInconsistentException(String arg0) {
super(arg0);
}
/**
* Constructs the FolderInconsistentException.java.
*
* @param arg0
* @param arg1
*/
public FolderInconsistentException(String arg0, Throwable arg1) {
super(arg0, arg1);
}
/**
* Constructs the FolderInconsistentException.java.
*
* @param arg0
*/
public FolderInconsistentException(Throwable arg0) {
super(arg0)
Clone fragments detected by clone detection tool
File path: /columba-1.4-src/core-api/src/main/java/org/columba/api/exception/BaseRuntimeException.java
|
|
File path: /columba-1.4-src/mail/src/main/java/org/columba/mail/folder/FolderInconsistentException.java
|
Method name:
|
|
Method name:
|
Number of AST nodes: 0
|
|
Number of AST nodes: 0
|
|
1 | public class BaseRuntimeException extends RuntimeException {↵ | | 1 | public class ↵
|
|
2 | public BaseRuntime↵ | | 2 | FolderInconsistentException extends Exception {↵
|
| | | 3 | /**↵
|
| | | 4 | * Constructs the FolderInconsistentException.java.↵
|
| | | 5 | * ↵
|
| | | 6 | * ↵
|
| | | 7 | */↵
|
3 | Exception() {↵ | | 8 | public FolderInconsistentException() {↵
|
4 | super();↵ | | 9 | super();↵
|
5 | }↵ | | |
|
|
6 | public BaseRuntime↵ | | 10 | }↵
|
|
| | | 11 | /**↵
|
| | | 12 | * Constructs the FolderInconsistentException.java.↵
|
| | | 13 | * ↵
|
| | | 14 | * @param arg0↵
|
| | | 15 | */↵
|
7 | Exception(String message) {↵ | | 16 | public FolderInconsistentException(String ↵
|
8 | super(message);↵ | | |
|
9 | }↵ | | |
|
|
10 | public BaseRuntime↵ | | 17 | arg0) {↵
|
| | | 18 | super(arg0);↵
|
| | | 19 | }↵
|
|
| | | 20 | /**↵
|
| | | 21 | * Constructs the FolderInconsistentException.java.↵
|
| | | 22 | * ↵
|
| | | 23 | * @param arg0↵
|
| | | 24 | * @param arg1↵
|
| | | 25 | */↵
|
11 | Exception(String message, Throwable cause) {↵ | | 26 | public FolderInconsistentException(String arg0, Throwable ↵
|
12 | super(message, cause);↵ | | |
|
13 | }↵ | | |
|
|
14 | public BaseRuntime↵ | | 27 | arg1) {↵
|
| | | 28 | super(arg0, arg1);↵
|
| | | 29 | }↵
|
|
| | | 30 | /**↵
|
| | | 31 | * Constructs the FolderInconsistentException.java.↵
|
| | | 32 | * ↵
|
| | | 33 | * @param arg0↵
|
| | | 34 | */↵
|
15 | Exception(Throwable cause) {↵ | | 35 | public FolderInconsistentException(Throwable ↵
|
16 | ↵ | | 36 | arg0) {↵
|
17 | super(cause) | | 37 | super(arg0)
|
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 |