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();
}
}