com.katalon.kata.helper.ExceptionHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of katalium Show documentation
Show all versions of katalium Show documentation
Fast, easy and reliable testing framework
package com.katalon.kata.helper;
import org.slf4j.Logger;
public class ExceptionHelper {
private static final Logger log = LogHelper.getLogger();
public static T rethrow(Exception e) {
log.info("Rethrow exception: {} {}", e.getClass().getName(), e.getMessage());
throw new IllegalStateException(e);
}
}