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

com.joe.utils.scan.ScannerException Maven / Gradle / Ivy

The newest version!
package com.joe.utils.scan;

/**
 * 扫描类时的异常
 * 
 * @author joe
 *
 */
public class ScannerException extends RuntimeException {
    private static final long serialVersionUID = -2914885047283866123L;

    public ScannerException(String message) {
        super(message);
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy