cloud-etl-rule/lib/com/muyu/rule/common/exception/DeliteException.java

31 lines
758 B
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.muyu.rule.common.exception;
/**
* @Author张承志
* @Packagecom.muyu.rule.server.exception
* @Projectcloud-etl-rule
* @nameActionDiscard
* @Date2024/8/26 22:08
*/
public class DeliteException extends RuntimeException {
public DeliteException() {
super();
}
public DeliteException(String message) {
super(message);
}
public DeliteException(String message, Throwable cause) {
super(message, cause);
}
public DeliteException(Throwable cause) {
super(cause);
}
protected DeliteException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}