001package io.prometheus.client.servlet.common.filter; 002 003/** 004 * Thrown when there is a misconfiguration in {@code web.xml}. 005 */ 006public class FilterConfigurationException extends Exception { 007 public FilterConfigurationException(String msg) { 008 super(msg); 009 } 010}