Package com.foundationdb.server.error

Examples of com.foundationdb.server.error.CircularDependencyException


        List<String> classNames = new ArrayList<>();
        for (Object o : dependents) {
            classNames.add(o.getClass().getSimpleName());
        }
        classNames.add(instance.getClass().getSimpleName());
        return new CircularDependencyException (forClassName, classNames);
    }
View Full Code Here

TOP

Related Classes of com.foundationdb.server.error.CircularDependencyException

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.