net.anotheria.portalkit.services.bounce.BounceServiceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pk-services-bounce Show documentation
Show all versions of pk-services-bounce Show documentation
Bounce service saves mail provider bounces
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);
}
}