public static void checkPropertySet()

in src/main/java/com/aws/sap/sample/lambda/sap/oauth/PropertyHandler.java [27:30]


	public static void checkPropertySet(Properties props, String propName) throws MissingPropertyException {
		if(getValue(props,propName) == null)
			throw new MissingPropertyException(propName);
	}