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