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

com.taobao.arthas.bytekit.asm.interceptor.annotation.PrintSuppressHandler Maven / Gradle / Ivy

The newest version!
package com.taobao.arthas.bytekit.asm.interceptor.annotation;

import com.taobao.arthas.bytekit.asm.binding.Binding;

public class PrintSuppressHandler {
    
    @ExceptionHandler(inline = true)
    public static void onSuppress(@Binding.Throwable Throwable e) {
        e.printStackTrace();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy