*
* @throws ConfiguratorException
*
*/
public boolean getBoolean(String key) throws ConfiguratorException {
if (this.props.getProperty(key) == null) { throw new ConfiguratorException(
"Parameter by key=" + key + " not found"); }
return this.props.getProperty(key).equalsIgnoreCase(VALUES.TRUE);
}