Skip to content

Commit

Permalink
GEN-26: fixing issue with streams getting struck and adding additiona…
Browse files Browse the repository at this point in the history
…l exception handling.
  • Loading branch information
Aravinda Baliga B committed Mar 4, 2024
1 parent c1aab69 commit 15b73e1
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,19 @@

public class CaptureValidationException extends RuntimeException {

public CaptureValidationException() {
super();
}

public CaptureValidationException(
String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}

public CaptureValidationException(Throwable cause) {
super(cause);
}

public CaptureValidationException(String msg) {
super(msg);
}
Expand Down

0 comments on commit 15b73e1

Please sign in to comment.