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 FolderCreationException extends Exception {
/**
* Constructs the FolderCreationException.java.
*
*
*/
public FolderCreationException() {
super();
}
/**
* Constructs the FolderCreationException.java.
*
* @param arg0
*/
public FolderCreationException(String arg0) {
super(arg0);
}
/**
* Constructs the FolderCreationException.java.
*
* @param arg0
*/
public FolderCreationException(Throwable arg0) {
super(arg0);
}
/**
* Constructs the FolderCreationException.java.
*
* @param arg0
* @param arg1
*/
public FolderCreationException(String arg0, Throwable arg1) {
super(arg0, arg1)
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/FolderCreationException.java
|
Method name:
|
|
Method name:
|
Number of AST nodes: 0
|
|
Number of AST nodes: 0
|
|
1 | public class BaseRuntimeException extends RuntimeException {↵ | | 1 | public class FolderCreationException extends ↵
|
|
2 | public BaseRuntimeException() {↵ | | |
|
3 | super();↵ | | |
|
4 | }↵ | | |
|
|
5 | public BaseRuntime↵ | | 2 | Exception {↵
|
|
| | | 3 | /**↵
|
| | | 4 | * Constructs the FolderCreationException.java.↵
|
| | | 5 | * ↵
|
| | | 6 | * ↵
|
| | | 7 | */↵
|
| | | 8 | public FolderCreationException() {↵
|
| | | 9 | super();↵
|
| | | 10 | }↵
|
|
| | | 11 | /**↵
|
| | | 12 | * Constructs the FolderCreationException.java.↵
|
| | | 13 | * ↵
|
| | | 14 | * @param arg0↵
|
| | | 15 | */↵
|
6 | Exception(String message) {↵ | | 16 | public FolderCreationException(String arg0) {↵
|
7 | super(message);↵ | | 17 | super(arg0);↵
|
8 | }↵ | | 18 | }↵
|
|
9 | public BaseRuntimeException(String message, ↵ | | 19 | /**↵
|
| | | 20 | * Constructs the FolderCreationException.java.↵
|
| | | 21 | * ↵
|
| | | 22 | * @param arg0↵
|
| | | 23 | */↵
|
10 | Throwable cause) {↵ | | 24 | public FolderCreationException(Throwable arg0) {↵
|
11 | super(message, cause);↵ | | 25 | super(↵
|
12 | }↵ | | |
|
|
13 | public BaseRuntimeException(↵ | | 26 | arg0);↵
|
| | | 27 | }↵
|
|
| | | 28 | /**↵
|
| | | 29 | * Constructs the FolderCreationException.java.↵
|
| | | 30 | * ↵
|
| | | 31 | * @param arg0↵
|
| | | 32 | * @param arg1↵
|
| | | 33 | */↵
|
14 | Throwable cause) {↵ | | 34 | public FolderCreationException(String arg0, Throwable arg1) {↵
|
15 | super(cause) | | 35 | super(arg0, arg1)
|
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 |