Package xbird.server

Examples of xbird.server.ServiceException


            try {
                grid.shutdown(true);
            } catch (RemoteException re) {
                ;
            }
            throw new ServiceException(e.getMessage(), e);
        }
    }
View Full Code Here


            throw new IllegalStateException("Illegal service state: " + _status);
        }
        try {
            engine.start();
        } catch (InternalException e) {
            throw new ServiceException("failed to start an engine", e.getCause());
        }
        this._status = Status.started;
        LOG.info("Service started: " + _srvName);
    }
View Full Code Here

            throw new IllegalStateException("Illegal service state: " + _status);
        }
        try {
            engine.shutdown(false);
        } catch (RemoteException e) {
            throw new ServiceException("failed to shutdown the engine", e);
        }
        this._status = Status.stopped;
        LOG.info("Service stopped: " + _srvName);
    }
View Full Code Here

TOP

Related Classes of xbird.server.ServiceException

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.