getRequiredProperty abstract method
Returns the property value for key
, or throws IllegalStateException
if the property is not defined.
This is useful for required configuration values such as API keys.
Example:
final apiKey = resolver.getRequiredProperty('security.apiKey');
Implementation
String getRequiredProperty(String key);