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

kz.greetgo.email.from_spring.MailException Maven / Gradle / Ivy

The newest version!
package kz.greetgo.email.from_spring;

public abstract class MailException extends RuntimeException {
  public MailException(String msg) {
    super(msg);
  }

  public MailException(String msg, Throwable ex) {
    super(msg, ex);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy