Examples of FaultException


Examples of org.servicemix.jbi.FaultException

            log.error("Error processing exchange", error);
            exchange.setStatus(ExchangeStatus.DONE);
        } else {
            exchange.setError(error);
            if (error instanceof FaultException) {
                FaultException faultException = (FaultException) error;
                exchange.setFault(faultException.getFault());
            }
        }
        getDeliveryChannel().send(exchange);
    }
View Full Code Here

Examples of org.servicemix.jbi.FaultException

     * A helper method which fails and completes the given exchange with the specified error
     */
    public void fail(MessageExchange exchange, Exception error) throws MessagingException {
        exchange.setError(error);
        if (error instanceof FaultException) {
            FaultException faultException = (FaultException) error;
            exchange.setFault(faultException.getFault());
        }
        getDeliveryChannel().send(exchange);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.