cn.twelvet.idempotent.exception.IdempotentException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of idempotent-spring-boot-starter Show documentation
Show all versions of idempotent-spring-boot-starter Show documentation
Importing and exporting Excel based on easyexcel annotation
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