001package io.prometheus.metrics.config; 002 003import io.prometheus.metrics.annotations.StableApi; 004 005@StableApi 006public class PrometheusPropertiesException extends RuntimeException { 007 008 private static final long serialVersionUID = 0L; 009 010 public PrometheusPropertiesException(String msg) { 011 super(msg); 012 } 013 014 public PrometheusPropertiesException(String msg, Exception cause) { 015 super(msg, cause); 016 } 017}