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 SummaryModifier and TypeMethodDescriptionstatic MissingValueExceptioncreate(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.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Method Details- 
createCreate new missing value exception.- Parameters:
- key- configuration key associated with the expected value.
- Returns:
- new missing value exception associated with a given key.
 
- 
createSupplierCreate 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.
 
 
-