Files
pinpoint/src/main/java/com/profiler/util/InterceptorUtils.java
T

15 lines
334 B
Java

package com.profiler.util;
public class InterceptorUtils {
public static boolean isThrowable(Object result) {
if (result instanceof Throwable) {
return true;
}
return false;
}
public static boolean isSuccess(Object result) {
return !isThrowable(result);
}
}