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

com.katalon.testops.testng.helper.ExceptionHelper Maven / Gradle / Ivy

The newest version!
package com.katalon.testops.testng.helper;

import com.katalon.testops.commons.helper.LogHelper;
import org.slf4j.Logger;

public class ExceptionHelper {

    private static final Logger logger = LogHelper.getLogger();

    public static  T wrap(Exception e) {
        logger.info("Rethrow exception: " + e.getClass().getName() + " " + e.getMessage());
        throw new IllegalStateException(e);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy