001package io.prometheus.metrics.config;
002
003public class PrometheusPropertiesException extends RuntimeException {
004
005    public PrometheusPropertiesException(String msg) {
006        super(msg);
007    }
008
009    public PrometheusPropertiesException(String msg, Exception cause) {
010        super(msg, cause);
011    }
012}