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

com.kylinhunter.plat.file.detector.exception.DetectException Maven / Gradle / Ivy

There is a newer version: 1.0.14
Show newest version
package com.kylinhunter.plat.file.detector.exception;

/**
 * @author BiJi'an
 * @description custom exception for detect
 * @date 2022-10-21 00:25
 **/
public class DetectException extends RuntimeException {
    public DetectException(String message) {
        super(message);
    }

    public DetectException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy