Skip to content

Commit

Permalink
exception for service "EmailService"
Browse files Browse the repository at this point in the history
  • Loading branch information
Optic-Okulist committed Oct 4, 2023
1 parent 898f289 commit dd5b8e2
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package spring.boot.bookstore.exception;

public class MessageSenderException extends RuntimeException {
public MessageSenderException(String message, Throwable cause) {
super(message, cause);
}
}

0 comments on commit dd5b8e2

Please sign in to comment.