Package com.rackspacecloud.blueflood.exceptions

Examples of com.rackspacecloud.blueflood.exceptions.ConfigException


        final TimeValue ttl = ttlMapper.get(gran, rollupType);

        if (ttl == null) {
            log.warn("No valid TTL entry for granularity: " + gran + ", rollup type: " + rollupType.name()
                    + " in config. Resorting to safe TTL values.");
            throw new ConfigException("No TTL config found for granularity: " + gran
                    + ", rollup type: " + rollupType.name());
        }

        return ttl;
    }
View Full Code Here

TOP

Related Classes of com.rackspacecloud.blueflood.exceptions.ConfigException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.