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

com.taobao.arthas.bytekit.utils.InstanceUtils Maven / Gradle / Ivy

The newest version!
package com.taobao.arthas.bytekit.utils;

public class InstanceUtils {

    public static  T newInstance(Class clazz) {
        try {
            return clazz.newInstance();
        } catch (Exception e) {
            throw new IllegalArgumentException(e);
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy