Package io.crate.exceptions

Examples of io.crate.exceptions.UnknownUpstreamFailure


    public void addFailure(@Nullable Throwable failure) {
        if (failure != null) {
            logger.error("addFailure local", failure);
        } else {
            failure = new UnknownUpstreamFailure();
        }
        try {
            boolean firstFailure = listener.setException(failure);
            logger.trace("addFailure first: {}", firstFailure);
        } finally {
View Full Code Here

TOP

Related Classes of io.crate.exceptions.UnknownUpstreamFailure

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.