Package org.fcrepo.server.errors

Examples of org.fcrepo.server.errors.InitializationException


       
        m_DOManager = (DOManager)server.getBean(DOManager.class.getName());
        m_policyIndex = (PolicyIndex)server.getBean(PolicyIndex.class.getName());
        if (m_DOManager == null) {
            LOG.error("DOManager module was not set");
            throw new InitializationException("DOManager module was not set");
        }

        if (m_policyIndex == null) {
            LOG.error("PolicyIndex was not set");
            throw new InitializationException("PolicyIndex was not set");
        }

    }
View Full Code Here

TOP

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

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.