Class InvalidConfigurationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalStateException
io.micrometer.core.instrument.config.InvalidConfigurationException
- All Implemented Interfaces:
Serializable
Signals that a piece of provided configuration is not acceptable for some reason. For
example negative SLO boundaries.
- See Also:
-
Constructor Summary
ConstructorDescriptionInvalidConfigurationException
(String message, Throwable cause) Construct an exception indication invalid configuration with the specified detail message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InvalidConfigurationException
Construct an exception indication invalid configuration with the specified detail message and cause.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (Anull
value is permitted, and indicates that the cause is nonexistent or unknown.)- Since:
- 1.11.9
-
InvalidConfigurationException
-