Package org.apache.tuscany.sca.scope

Examples of org.apache.tuscany.sca.scope.TargetDestructionException


    public void destroy(Object instance) throws TargetDestructionException {
        if (configuration.getDestroyInvoker() != null) {
            try {
                configuration.getDestroyInvoker().invokeEvent(instance);
            } catch (ObjectCallbackException e) {
                throw new TargetDestructionException("Error destroying component instance : " + getUri().toString(), e);
            }
        }
    }
View Full Code Here


    public void destroy(Object instance) throws TargetDestructionException {
        if (configuration.getDestroyInvoker() != null) {
            try {
                configuration.getDestroyInvoker().invokeEvent(instance);
            } catch (ObjectCallbackException e) {
                throw new TargetDestructionException("Error destroying component instance : " + getUri().toString(), e);
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.tuscany.sca.scope.TargetDestructionException

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.