All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bigdata.config.ConfigurationException Maven / Gradle / Ivy

package com.bigdata.config;

/**
 * Instance thrown if there is a problem with a property value. 
 * 
 * @author Bryan Thompson
 * @version $Id$
 */
public class ConfigurationException extends RuntimeException {

    /**
     * 
     */
    private static final long serialVersionUID = 55363418935577963L;

    public ConfigurationException(String key, String val, String msg) {
        
        super(msg + ": " + key + "=" + val);
        
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy