Package com.sun.enterprise.ee.synchronization

Examples of com.sun.enterprise.ee.synchronization.NonMatchingDASContactedException


                String msg = _localStrMgr.getString("dasCommunicationError");
                // include the original exception from ping
                if (pc != null) {
                    Object pingResult = pc.getResult();
                    if (pingResult instanceof NonMatchingDASContactedException) {
                        NonMatchingDASContactedException oriEx =
                            (NonMatchingDASContactedException) pingResult;
                        throw oriEx;
                    }
                    _logger.log(Level.FINE,
                        "synchronization.skipping_synchronization");
View Full Code Here

TOP

Related Classes of com.sun.enterprise.ee.synchronization.NonMatchingDASContactedException

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.