Skip to content

Commit

Permalink
Add TimeUtilException
Browse files Browse the repository at this point in the history
  • Loading branch information
euchangxian committed Sep 1, 2023
1 parent 543c90e commit b02026c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/main/java/exception/TimeUtilException.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package exception;

public class TimeUtilException extends DukeException {
public TimeUtilException(String message) {
super(String.format("%s %s", "[TimeUtil]", message));
}
}

0 comments on commit b02026c

Please sign in to comment.