mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-09 00:21:13 +08:00
16 lines
350 B
Java
16 lines
350 B
Java
package com.openisle.exception;
|
|
|
|
/**
|
|
* Thrown when email sending fails so callers can surface a clear error upstream.
|
|
*/
|
|
public class EmailSendException extends RuntimeException {
|
|
|
|
public EmailSendException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public EmailSendException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
}
|