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

com.epam.jdi.light.common.Exceptions Maven / Gradle / Ivy

There is a newer version: 1.6.0
Show newest version
package com.epam.jdi.light.common;

import static java.lang.String.format;

/**
 * Created by Roman_Iovlev on 3/19/2018.
 */
public class Exceptions {
    public static RuntimeException exception(String msg, Object... args) {
        String message = format(msg, args);
        return new RuntimeException(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy