All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.oliviercailloux.email.UncheckedMessagingException Maven / Gradle / Ivy

The newest version!
package io.github.oliviercailloux.email;

import io.github.oliviercailloux.jaris.exceptions.Unchecker;
import jakarta.mail.MessagingException;

@SuppressWarnings("serial")
public class UncheckedMessagingException extends RuntimeException {
  public static Unchecker MESSAGING_UNCHECKER =
      Unchecker.wrappingWith(UncheckedMessagingException::new);

  public UncheckedMessagingException(MessagingException cause) {
    super(cause);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy