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

net.anotheria.portalkit.services.bounce.BounceServiceException Maven / Gradle / Ivy

The newest version!
package net.anotheria.portalkit.services.bounce;

/**
 * General {@link BounceServiceException} exception.
 *
 * @author Vlad Lukjanenko
 */
public class BounceServiceException extends Exception {

    /**
     * Constructor.
     *
     * @param message   error message.
     * */
    public BounceServiceException(String message) {
        super(message);
    }

    /**
     * Constructor.
     *
     * @param message   error message.
     * @param cause     exception cause.
     * */
    public BounceServiceException(String message, Exception cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy