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

icasue.reflect.exceptions.HandleException Maven / Gradle / Ivy

package icasue.reflect.exceptions;

/**
 * @Author: Qiao Hang
 * @CreateDate: 2020/12/2 下午5:53
 * @UpdateDate:
 * @Description:
 */
public class HandleException extends RuntimeException {

    public String message;

    public HandleException(String message){
        super(message);
        this.message = message;
    }

    public HandleException(){
        super();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy