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

com.github.houbb.auto.summary.exception.AutoSummaryException Maven / Gradle / Ivy

There is a newer version: 0.0.3
Show newest version
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); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy