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

com.katalon.kata.helper.ExceptionHelper Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy