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

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

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

/**
 * General exception on parsing or another problems with variables
 */
public class VariableRuntimeException extends RuntimeException {

	private static final long serialVersionUID = 2438230829230836874L;

	public VariableRuntimeException() {
		super();
	}

	public VariableRuntimeException(final String message) {
		super(message);
	}

	public VariableRuntimeException(final Throwable cause) {
		super(cause);
	}

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy