java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.helidon.common.config.ConfigException
io.helidon.config.ConfigException
io.helidon.config.MissingValueException
- All Implemented Interfaces:
Serializable
Exception representing a specific failures related to a missing configuration value.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionstatic MissingValueException
create
(Config.Key key) Create new missing value exception.static Supplier
<MissingValueException> createSupplier
(Config.Key key) Create new missing value exception supplier.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Method Details
-
create
Create new missing value exception.- Parameters:
key
- configuration key associated with the expected value.- Returns:
- new missing value exception associated with a given key.
-
createSupplier
Create new missing value exception supplier.- Parameters:
key
- configuration key associated with the expected value.- Returns:
- new supplier of a missing value exception associated with a given key.
-