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

com.jonnymatts.prometheus.http.configuration.ConfigurationParsingException Maven / Gradle / Ivy

The newest version!
package com.jonnymatts.prometheus.http.configuration;

import static java.lang.String.format;

public class ConfigurationParsingException extends RuntimeException {

    public ConfigurationParsingException(String failedConfigBody, Exception e) {
        super(format("Could not parse config. Given config: \n %s", failedConfigBody), e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy