package dk.daoas.fulddaekning; import java.util.Properties; public class SafeProperties extends Properties { public String getSafeProperty(String key) { String val = getProperty(key); if (val == null) { throw new RuntimeException( "Property not found: " + key); } return val; } }