Skip to content

Commit

Permalink
feat: Updated src/main/java/com/yuriytkach/tracker
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] authored Dec 16, 2023
1 parent d73e827 commit 032be85
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
import java.lang.RuntimeException;

Check notice on line 3 in src/main/java/com/yuriytkach/tracker/fundraiser/model/exception/FundTotalMismatchException.java

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

src/main/java/com/yuriytkach/tracker/fundraiser/model/exception/FundTotalMismatchException.java#L3

Redundant import from the java.lang package - java.lang.RuntimeException.

Check notice on line 3 in src/main/java/com/yuriytkach/tracker/fundraiser/model/exception/FundTotalMismatchException.java

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

src/main/java/com/yuriytkach/tracker/fundraiser/model/exception/FundTotalMismatchException.java#L3

Unused import - java.lang.RuntimeException.

public class FundTotalMismatchException extends RuntimeException {
public FundTotalMismatchException(String message) {

public FundTotalMismatchException(final String message) {

Check notice on line 7 in src/main/java/com/yuriytkach/tracker/fundraiser/model/exception/FundTotalMismatchException.java

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

src/main/java/com/yuriytkach/tracker/fundraiser/model/exception/FundTotalMismatchException.java#L7

'ctor def modifier' has incorrect indentation level 4, expected level should be 2.
super(message);

Check notice on line 8 in src/main/java/com/yuriytkach/tracker/fundraiser/model/exception/FundTotalMismatchException.java

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

src/main/java/com/yuriytkach/tracker/fundraiser/model/exception/FundTotalMismatchException.java#L8

'ctor def' child has incorrect indentation level 8, expected level should be 4.
}

Check notice on line 9 in src/main/java/com/yuriytkach/tracker/fundraiser/model/exception/FundTotalMismatchException.java

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

src/main/java/com/yuriytkach/tracker/fundraiser/model/exception/FundTotalMismatchException.java#L9

'ctor def rcurly' has incorrect indentation level 4, expected level should be 2.

public FundTotalMismatchException(String message, Throwable cause) {
public FundTotalMismatchException(final String message, final Throwable cause) {

Check notice on line 11 in src/main/java/com/yuriytkach/tracker/fundraiser/model/exception/FundTotalMismatchException.java

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

src/main/java/com/yuriytkach/tracker/fundraiser/model/exception/FundTotalMismatchException.java#L11

'ctor def modifier' has incorrect indentation level 4, expected level should be 2.
super(message, cause);

Check notice on line 12 in src/main/java/com/yuriytkach/tracker/fundraiser/model/exception/FundTotalMismatchException.java

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

src/main/java/com/yuriytkach/tracker/fundraiser/model/exception/FundTotalMismatchException.java#L12

'ctor def' child has incorrect indentation level 8, expected level should be 4.
}
}

0 comments on commit 032be85

Please sign in to comment.