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

org.jresearch.commons.base.mail.DoNotRetryException Maven / Gradle / Ivy

The newest version!
package org.jresearch.commons.base.mail;

/**
 * @author kot
 * 
 *         Just a flag exception - do not retry the tack
 */
public class DoNotRetryException extends Exception {

	private static final long serialVersionUID = 5148975968829275904L;

	public DoNotRetryException() {
		super();
	}

	public DoNotRetryException(String message, Throwable cause) {
		super(message, cause);
	}

	public DoNotRetryException(String message) {
		super(message);
	}

	public DoNotRetryException(Throwable cause) {
		super(cause);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy