Package atg.nucleus

Examples of atg.nucleus.ServiceException


            mInitializer = new IdGeneratorInitializer(this);
        }
        try {
            mInitializer.initialize();
        } catch ( SQLException e ) {
            throw new ServiceException(e);
        }
    }
View Full Code Here


            mInitializer = new IdGeneratorInitializer(this);
        }
        try {
            mInitializer.initialize();
        } catch ( SQLException e ) {
            throw new ServiceException(e);
        }
    }
View Full Code Here

     * method to execute when starting this component
     */
    public void doStartService()
            throws ServiceException {
        if ( getRepository() == null ) {
            throw new ServiceException("Repository property is null.");
        }

        setDataSource(getRepository().getDataSource());
    }
View Full Code Here

     */
    void prepare()
            throws ServiceException {
        Nucleus n = Nucleus.getGlobalNucleus();
        if ( n == null ) {
            throw new ServiceException("Nucleus is not running.");
        } else {
            n.logInfo("Prepared.");
        }
        isCleanStart = true;
    }
View Full Code Here

TOP

Related Classes of atg.nucleus.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.