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

io.github.sashirestela.openai.SimpleUncheckedException Maven / Gradle / Ivy

There is a newer version: 3.9.2
Show newest version
package io.github.sashirestela.openai;

import java.text.MessageFormat;
import java.util.Arrays;

public class SimpleUncheckedException extends RuntimeException {

    public SimpleUncheckedException(String message) {
        super(message);
    }

    public SimpleUncheckedException(String message, Object... parameters) {
        super(MessageFormat.format(message, Arrays.copyOfRange(parameters, 0, parameters.length - 1)),
                (Throwable) parameters[parameters.length - 1]);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy