Package org.apache.commons.proxy.exception

Examples of org.apache.commons.proxy.exception.InvokerException


    public Object invoke( Object proxy, Method method, Object[] args ) throws Throwable
    {
        final Object returnValue = handler.execute( handlerName + "." + method.getName(), toArgumentVector( args ) );
        if( returnValue instanceof XmlRpcException )
        {
            throw new InvokerException( "Unable to execute XML-RPC call.", ( XmlRpcException )returnValue );

        }
        return returnValue;
    }
View Full Code Here

TOP

Related Classes of org.apache.commons.proxy.exception.InvokerException

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.