com.github.houbb.auto.summary.exception.AutoSummaryException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of auto-summary Show documentation
Show all versions of auto-summary Show documentation
The auto-summary tool for java.
package com.github.houbb.auto.summary.exception;
/**
* project: auto-summary-AutoSummaryException
* create on 2020/3/12 21:58
*
* @author binbin.hou
* @since 0.0.1
*/
public class AutoSummaryException extends RuntimeException {
public AutoSummaryException() {
}
public AutoSummaryException(String message) {
super(message);
}
public AutoSummaryException(String message, Throwable cause) {
super(message, cause);
}
public AutoSummaryException(Throwable cause) {
super(cause);
}
public AutoSummaryException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}