Package org.apache.tuscany.sca.binding.corba.impl.service

Examples of org.apache.tuscany.sca.binding.corba.impl.service.InvocationException


            logger.log(Level.WARNING, "XMLStreamException during handling invocation target exception", e);
        } catch (InvocationTargetException e) {
            OMElement omException = (OMElement)((FaultException)e.getCause()).getFaultInfo();
            try {
                WrappedSCAException wrappedException = new WrappedSCAException(omException.toStringWithConsume());
                InvocationException exception = new InvocationException(wrappedException);
                throw exception;
            } catch (XMLStreamException xmle) {
                logger.log(Level.WARNING, "XMLStreamException during handling invocation target exception", xmle);
            }
           
View Full Code Here

TOP

Related Classes of org.apache.tuscany.sca.binding.corba.impl.service.InvocationException

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.