Skip to content

Commit

Permalink
STYLE: 158 - Remove unused constructors
Browse files Browse the repository at this point in the history
  • Loading branch information
munterfi committed Jan 13, 2025
1 parent 015c1e7 commit f3c2a41
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/main/java/ch/naviqore/raptor/RaptorAlgorithm.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,22 +55,12 @@ class InvalidStopException extends IllegalArgumentException {
public InvalidStopException(String message) {
super(message);
}

public InvalidStopException(String message, Throwable cause) {
super(message, cause);
}
}

class MyException extends IllegalArgumentException {}

class InvalidTimeException extends IllegalArgumentException {
public InvalidTimeException(String message) {
super(message);
}

public InvalidTimeException(String message, Throwable cause) {
super(message, cause);
}
}

}

0 comments on commit f3c2a41

Please sign in to comment.