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

com.taobao.arthas.common.ReflectException Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
package com.taobao.arthas.common;

public class ReflectException extends RuntimeException {

    private static final long serialVersionUID = 1L;
    private Throwable cause;

    public ReflectException(Throwable cause) {
        super(cause != null ? cause.getClass().getName() + "-->" + cause.getMessage() : "");
        this.cause = cause;
    }

    public Throwable getCause() {
        return this.cause;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy