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

com.github.choonchernlim.springbootmail.core.MailException.groovy Maven / Gradle / Ivy

The newest version!
package com.github.choonchernlim.springbootmail.core

/**
 * Module exception class.
 */
class MailException extends RuntimeException {
    MailException(final String msg) {
        super(msg)
    }

    MailException(final String msg, final Throwable e) {
        super(msg, e)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy