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

cn.twelvet.idempotent.exception.IdempotentException Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package cn.twelvet.idempotent.exception;

/**
 * Idempotent Exception If there is a custom global exception, you need to inherit the
 * custom global exception.
 *
 * @author twelvet
 */
public class IdempotentException extends RuntimeException {

	/**
	 * IdempotentException
	 */
	public IdempotentException() {
		super();
	}

	/**
	 * IdempotentException
	 * @param message String
	 */
	public IdempotentException(String message) {
		super(message);
	}

	/**
	 * IdempotentException
	 * @param message String
	 * @param cause Throwable
	 */
	public IdempotentException(String message, Throwable cause) {
		super(message, cause);
	}

	/**
	 * IdempotentException
	 * @param cause Throwable
	 */
	public IdempotentException(Throwable cause) {
		super(cause);
	}

	/**
	 * IdempotentException
	 * @param message String
	 * @param cause Throwable
	 * @param enableSuppression boolean
	 * @param writableStackTrace boolean
	 */
	protected IdempotentException(String message, Throwable cause, boolean enableSuppression,
			boolean writableStackTrace) {
		super(message, cause, enableSuppression, writableStackTrace);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy