Examples of VirtualEngineServiceException


Examples of betsy.bpel.virtual.host.exceptions.VirtualEngineServiceException

        try {
            if (!ServiceValidator.isEngineReady(engineServices, secondsToWait)) {
                log.warn("engine services not found withing " + secondsToWait + " seconds");
                // timeout in CountDownLatch
                throw new VirtualEngineServiceException(
                        "The required services for the engine were "
                                + "not available within " + secondsToWait
                                + "s after starting the vm. If using a debian/"
                                + "ubuntu system, make sure to delete the "
                                + "'/etc/udev/rules.d/70-persistent-net.rules'"
                                + "file before exporting the appliance. "
                                + "If this error occurs "
                                + "repeatedly, please import the vm manually"
                                + " with a valid snapshot in 'Running' state.");
            }
        } catch (MalformedURLException e) {
            throw new VirtualEngineServiceException("Could not verify "
                    + "engine service availability. At least one address is "
                    + "invalid: ", e);
        } catch (InterruptedException e) {
            throw new VirtualEngineServiceException("interrupted", e);
        }
    }
View Full Code Here

Examples of betsy.bpel.virtual.host.exceptions.VirtualEngineServiceException

    }

    private void failIfBetsyServerTimesOut() throws VirtualEngineServiceException {
        if (!ServiceValidator.isBetsyServerReady(Timeouts.FIFTEEN_SECONDS)) {
            log.warn("betsy server not found withing 15s");
            throw new VirtualEngineServiceException(
                    "The required betsy server was "
                            + "not available within 15s "
                            + "after having found all other services. ");
        }
    }
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.