Package org.fcrepo.server.errors

Examples of org.fcrepo.server.errors.ServerShutdownException


        shutdownServer();
        logger.info("Server shutdown complete");
        s_instances.remove(getHomeDir());

        if (mse != null) {
            throw new ServerShutdownException(mse.toString());
        }
    }
View Full Code Here


     * @throws ServerShutdownException
     *         If a severe server shutdown-related error occurred.
     */
    protected void shutdownServer() throws ServerShutdownException {
        if (1 == 2) {
            throw new ServerShutdownException(null);
        }
    }
View Full Code Here

TOP

Related Classes of org.fcrepo.server.errors.ServerShutdownException

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.